Skip to content

Commit 6ac83ad

Browse files
authored
Merge pull request #1363 from dearrudam/upgrading-angular
Upgrading angular
2 parents dc292a8 + c2098d7 commit 6ac83ad

20 files changed

+31909
-9090
lines changed
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# This file is used by the build system to adjust CSS and JS output to support the specified browsers below.
2+
# For additional information regarding the format and rule options, please see:
3+
# https://github.com/browserslist/browserslist#queries
4+
5+
# You can see what browsers were selected by your queries by running:
6+
# npx browserslist
7+
8+
> 0.5%
9+
last 2 versions
10+
Firefox ESR
11+
not dead
12+
not IE 9-11 # For IE 9-11 support, remove 'not'.

codigofonte/ionicv4/soujavaVagas/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ log.txt
1212
.vscode/
1313
npm-debug.log*
1414

15+
.angular/
1516
.idea/
1617
.ionic/
1718
.sourcemaps/

codigofonte/ionicv4/soujavaVagas/angular.json

Lines changed: 23 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,21 @@
3333
],
3434
"styles": [
3535
{
36-
"input": "src/theme/variables.scss"
36+
"input": "src/theme/variables.scss",
37+
"inject": true
3738
},
3839
{
39-
"input": "src/global.scss"
40+
"input": "src/global.scss",
41+
"inject": true
4042
}
4143
],
42-
"scripts": []
44+
"scripts": [],
45+
"vendorChunk": true,
46+
"extractLicenses": false,
47+
"buildOptimizer": false,
48+
"sourceMap": true,
49+
"optimization": false,
50+
"namedChunks": true
4351
},
4452
"configurations": {
4553
"production": {
@@ -52,9 +60,7 @@
5260
"optimization": true,
5361
"outputHashing": "all",
5462
"sourceMap": false,
55-
"extractCss": true,
5663
"namedChunks": false,
57-
"aot": true,
5864
"extractLicenses": true,
5965
"vendorChunk": false,
6066
"buildOptimizer": true,
@@ -63,13 +69,24 @@
6369
"type": "initial",
6470
"maximumWarning": "2mb",
6571
"maximumError": "5mb"
72+
},
73+
{
74+
"type": "anyComponentStyle",
75+
"maximumWarning": "6kb"
6676
}
6777
]
6878
},
6979
"ci": {
80+
"budgets": [
81+
{
82+
"type": "anyComponentStyle",
83+
"maximumWarning": "6kb"
84+
}
85+
],
7086
"progress": false
7187
}
72-
}
88+
},
89+
"defaultConfiguration": ""
7390
},
7491
"serve": {
7592
"builder": "@angular-devkit/build-angular:dev-server",

0 commit comments

Comments
 (0)