Skip to content

Commit f193bbf

Browse files
authored
Merge branch 'krausest:master' into refactor-webdriver-ts
2 parents 8bfc8e8 + d011937 commit f193bbf

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+20690
-27038
lines changed

.eslintignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Build
2+
dist/
3+
build/
4+
output/
5+
6+
# Root
7+
/css/

.eslintrc.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"env": { "node": true, "es2024": true },
3+
"extends": ["eslint:recommended"]
4+
}

.prettierignore

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Dependencies
2+
package-lock.json
3+
node_modules
4+
5+
# Build
6+
dist/
7+
build/
8+
output/
9+
10+
# Root
11+
/css/
12+
13+
# Webdriver-ts
14+
webdriver-ts/results.json
15+
webdriver-ts/results/
16+
webdriver-ts/traces/

.prettierrc.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"trailingComma": "all"
3+
}

frameworks/keyed/angular-nozone/angular.json

Lines changed: 37 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -8,62 +8,73 @@
88
"projects": {
99
"angular": {
1010
"projectType": "application",
11-
"schematics": {},
11+
"schematics": {
12+
"@schematics/angular:component": {
13+
"standalone": true
14+
},
15+
"@schematics/angular:directive": {
16+
"standalone": true
17+
},
18+
"@schematics/angular:pipe": {
19+
"standalone": true
20+
}
21+
},
1222
"root": "",
1323
"sourceRoot": "src",
1424
"prefix": "app",
1525
"architect": {
1626
"build": {
17-
"builder": "@angular-devkit/build-angular:browser",
27+
"builder": "@angular-devkit/build-angular:browser-esbuild",
1828
"options": {
1929
"outputPath": "dist/angular",
2030
"index": "src/index.html",
2131
"main": "src/main.ts",
22-
"polyfills": "src/polyfills.ts",
32+
"polyfills": [],
2333
"tsConfig": "tsconfig.app.json",
24-
"aot": false,
2534
"assets": [
26-
{ "glob": "**/*", "input": "src/css/", "output": "/css/" }
27-
],
28-
"styles": [
35+
"src/assets"
2936
],
37+
"styles": [],
3038
"scripts": []
3139
},
3240
"configurations": {
3341
"production": {
34-
"optimization": true,
35-
"outputHashing": "all",
36-
"sourceMap": false,
37-
"namedChunks": false,
38-
"aot": true,
39-
"extractLicenses": true,
40-
"vendorChunk": false,
41-
"buildOptimizer": true,
4242
"budgets": [
4343
{
4444
"type": "initial",
45-
"maximumWarning": "2mb",
46-
"maximumError": "5mb"
45+
"maximumWarning": "500kb",
46+
"maximumError": "1mb"
4747
},
4848
{
4949
"type": "anyComponentStyle",
50-
"maximumWarning": "6kb",
51-
"maximumError": "10kb"
50+
"maximumWarning": "2kb",
51+
"maximumError": "4kb"
5252
}
53-
]
53+
],
54+
"outputHashing": "all"
55+
},
56+
"development": {
57+
"buildOptimizer": false,
58+
"optimization": false,
59+
"vendorChunk": true,
60+
"extractLicenses": false,
61+
"sourceMap": true,
62+
"namedChunks": true
5463
}
55-
}
64+
},
65+
"defaultConfiguration": "production"
5666
},
5767
"serve": {
5868
"builder": "@angular-devkit/build-angular:dev-server",
59-
"options": {
60-
"browserTarget": "angular:build"
61-
},
6269
"configurations": {
6370
"production": {
6471
"browserTarget": "angular:build:production"
72+
},
73+
"development": {
74+
"browserTarget": "angular:build:development"
6575
}
66-
}
76+
},
77+
"defaultConfiguration": "development"
6778
},
6879
"extract-i18n": {
6980
"builder": "@angular-devkit/build-angular:extract-i18n",
@@ -74,4 +85,4 @@
7485
}
7586
}
7687
}
77-
}
88+
}

0 commit comments

Comments
 (0)