Skip to content

Commit ac07554

Browse files
authored
Merge pull request #170 from natereprogle/dev
Move to esbuild for faster builds
2 parents 51cb41e + 70df820 commit ac07554

File tree

3 files changed

+5
-15
lines changed

3 files changed

+5
-15
lines changed

.github/workflows/cypress.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
steps:
1414
# Checkout the branch
1515
- name: Checkout
16-
uses: actions/checkout@v3
16+
uses: actions/checkout@v4
1717

1818
# Create the test environment file from Actions Secrets
1919
- name: Echo secrets
@@ -47,7 +47,7 @@ jobs:
4747
4848
# Setup a build cache for Cypress so we don't have to install it every time
4949
- name: Cache
50-
uses: actions/cache@v3.3.1
50+
uses: actions/cache@v3.3.2
5151
with:
5252
path: '/home/runner/.cache/Cypress'
5353
key: ${{ runner.os }}-cypres-cache-${{ hashFiles('**/pnpm-lock.yaml') }}

angular.json

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@
2121
"prefix": "app",
2222
"architect": {
2323
"build": {
24-
"builder": "@angular-devkit/build-angular:browser",
24+
"builder": "@angular-devkit/build-angular:application",
2525
"options": {
2626
"outputPath": "dist/reprogleorg",
2727
"index": "src/index.html",
28-
"main": "src/main.ts",
28+
"browser": "src/main.ts",
2929
"polyfills": [
3030
"zone.js"
3131
],
@@ -75,9 +75,7 @@
7575
"outputHashing": "all"
7676
},
7777
"development": {
78-
"buildOptimizer": false,
7978
"optimization": false,
80-
"vendorChunk": true,
8179
"extractLicenses": false,
8280
"sourceMap": true,
8381
"namedChunks": true,
@@ -89,9 +87,7 @@
8987
]
9088
},
9189
"test": {
92-
"buildOptimizer": true,
9390
"optimization": false,
94-
"vendorChunk": true,
9591
"namedChunks": true,
9692
"fileReplacements": [
9793
{
@@ -184,4 +180,4 @@
184180
}
185181
}
186182
}
187-
}
183+
}

pnpm-lock.yaml

Lines changed: 0 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)