Skip to content

Commit deb1fdb

Browse files
author
Martin Hove
committed
Release 5.7.0
1 parent 7e3ba22 commit deb1fdb

Some content is hidden

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

50 files changed

+41942
-585
lines changed

angular.json

+19-38
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,14 @@
1010
"prefix": "app",
1111
"schematics": {
1212
"@schematics/angular:component": {
13-
"styleext": "scss"
13+
"style": "scss"
1414
}
1515
},
1616
"architect": {
1717
"build": {
1818
"builder": "@angular-devkit/build-angular:browser",
1919
"options": {
20+
"aot": true,
2021
"outputPath": "dist/mapsIndoors-webapp",
2122
"index": "src/index.html",
2223
"main": "src/main.ts",
@@ -49,6 +50,12 @@
4950
},
5051
"configurations": {
5152
"production": {
53+
"budgets": [
54+
{
55+
"type": "anyComponentStyle",
56+
"maximumWarning": "6kb"
57+
}
58+
],
5259
"fileReplacements": [
5360
{
5461
"replace": "src/environments/environment.ts",
@@ -62,7 +69,6 @@
6269
"scripts": true,
6370
"styles": true
6471
},
65-
"extractCss": true,
6672
"namedChunks": false,
6773
"aot": true,
6874
"extractLicenses": true,
@@ -89,6 +95,12 @@
8995
"input": "./modules/sdk/node_modules/@MapsIndoors/micommon/bin/",
9096
"output": "/assets/sdk/"
9197
}
98+
],
99+
"budgets": [
100+
{
101+
"type": "anyComponentStyle",
102+
"maximumWarning": "6kb"
103+
}
92104
]
93105
}
94106
}
@@ -104,7 +116,7 @@
104116
},
105117
"development": {
106118
"browserTarget": "mapsIndoors-webapp:build:development"
107-
}
119+
}
108120
}
109121
},
110122
"extract-i18n": {
@@ -113,43 +125,12 @@
113125
"browserTarget": "mapsIndoors-webapp:build"
114126
}
115127
},
116-
"test": {
117-
"builder": "@angular-builders/jest:run",
118-
"options": {
119-
"configPath": "../jest.config.js"
120-
}
121-
},
122-
"lint": {
123-
"builder": "@angular-devkit/build-angular:tslint",
124-
"options": {
125-
"tsConfig": [
126-
"src/tsconfig.app.json",
127-
"src/tsconfig.spec.json"
128-
],
129-
"exclude": [
130-
"**/node_modules/**"
131-
]
132-
}
133-
}
134-
}
135-
},
136-
"mapsIndoors-webapp-e2e": {
137-
"root": "e2e/",
138-
"projectType": "application",
139-
"architect": {
140-
"e2e": {
141-
"builder": "@angular-devkit/build-angular:protractor",
142-
"options": {
143-
"protractorConfig": "e2e/protractor.conf.js",
144-
"devServerTarget": "mapsIndoors-webapp:serve"
145-
}
146-
},
147128
"lint": {
148-
"builder": "@angular-devkit/build-angular:tslint",
129+
"builder": "@angular-eslint/builder:lint",
149130
"options": {
150-
"tsConfig": "e2e/tsconfig.e2e.json",
151-
"exclude": [
152-
"**/node_modules/**"
131+
"lintFilePatterns": [
132+
"src/**/*.ts",
133+
"src/**/*.html"
153134
]
154135
}
155136
}

e2e/protractor.conf.js

-28
This file was deleted.

e2e/src/app.e2e-spec.ts

-14
This file was deleted.

e2e/src/app.po.ts

-11
This file was deleted.

e2e/tsconfig.e2e.json

-13
This file was deleted.

0 commit comments

Comments
 (0)