Skip to content

Commit 53bd95d

Browse files
committed
Update dependencies with new Angular CLI
1 parent 4270e9e commit 53bd95d

20 files changed

+812
-1106
lines changed

.editorconfig

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Editor configuration, see http://editorconfig.org
1+
# Editor configuration, see https://editorconfig.org
22
root = true
33

44
[*]

.gitignore

+9-4
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@
88
# dependencies
99
/node_modules
1010

11+
# profiling files
12+
chrome-profiler-events.json
13+
speed-measure-plugin.json
14+
1115
# IDEs and editors
1216
/.idea
1317
.project
@@ -19,10 +23,11 @@
1923

2024
# IDE - VSCode
2125
.vscode/*
22-
.vscode/settings.json
23-
.vscode/tasks.json
24-
.vscode/launch.json
25-
.vscode/extensions.json
26+
!.vscode/settings.json
27+
!.vscode/tasks.json
28+
!.vscode/launch.json
29+
!.vscode/extensions.json
30+
.history/*
2631

2732
# misc
2833
/.sass-cache

angular.json

+9-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,14 @@
4747
"aot": true,
4848
"extractLicenses": true,
4949
"vendorChunk": false,
50-
"buildOptimizer": true
50+
"buildOptimizer": true,
51+
"budgets": [
52+
{
53+
"type": "initial",
54+
"maximumWarning": "2mb",
55+
"maximumError": "5mb"
56+
}
57+
]
5158
}
5259
}
5360
},
@@ -102,6 +109,7 @@
102109
"angular-token-app-e2e": {
103110
"root": "e2e/",
104111
"projectType": "application",
112+
"prefix": "",
105113
"architect": {
106114
"e2e": {
107115
"builder": "@angular-devkit/build-angular:protractor",

0 commit comments

Comments
 (0)