Skip to content

Commit dadbdab

Browse files
committed
Upgraded to Angular 12
1 parent fabce03 commit dadbdab

File tree

85 files changed

+13079
-34
lines changed

Some content is hidden

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

85 files changed

+13079
-34
lines changed

angular-11-social-login/.gitignore renamed to angular-12-social-login/.gitignore

+1-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99

1010
# dependencies
1111
/node_modules
12-
/node_modules - Copy
1312
# profiling files
1413
chrome-profiler-events*.json
1514
speed-measure-plugin*.json
@@ -47,4 +46,4 @@ testem.log
4746

4847
# System Files
4948
.DS_Store
50-
Thumbs.db
49+
Thumbs.db
File renamed without changes.

angular-11-social-login/angular.json renamed to angular-12-social-login/angular.json

+27-15
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,30 @@
22
"$schema" : "./node_modules/@angular/cli/lib/config/schema.json",
33
"version" : 1,
44
"newProjectRoot" : "projects",
5-
"defaultProject" : "Angular11SocialLogin",
5+
"defaultProject" : "Angular12SocialLogin",
66
"projects" : {
7-
"Angular11SocialLogin" : {
7+
"Angular12SocialLogin" : {
88
"root" : "",
99
"sourceRoot" : "src",
1010
"projectType" : "application",
1111
"architect" : {
1212
"build" : {
1313
"builder" : "@angular-devkit/build-angular:browser",
1414
"options" : {
15-
"outputPath" : "dist/Angular11SocialLogin",
15+
"outputPath" : "dist/Angular12SocialLogin",
1616
"index" : "src/index.html",
1717
"main" : "src/main.ts",
1818
"polyfills" : "src/polyfills.ts",
1919
"tsConfig" : "tsconfig.app.json",
20-
"aot" : true,
2120
"assets" : [ "src/favicon.ico", "src/assets" ],
2221
"styles" : [ "src/styles.css" ],
23-
"scripts" : [ ]
22+
"scripts" : [ ],
23+
"vendorChunk" : true,
24+
"extractLicenses" : false,
25+
"buildOptimizer" : false,
26+
"sourceMap" : true,
27+
"optimization" : false,
28+
"namedChunks" : true
2429
},
2530
"configurations" : {
2631
"production" : {
@@ -45,23 +50,24 @@
4550
"maximumError" : "10kb"
4651
} ]
4752
}
48-
}
53+
},
54+
"defaultConfiguration" : ""
4955
},
5056
"serve" : {
5157
"builder" : "@angular-devkit/build-angular:dev-server",
5258
"options" : {
53-
"browserTarget" : "Angular11SocialLogin:build"
59+
"browserTarget" : "Angular12SocialLogin:build"
5460
},
5561
"configurations" : {
5662
"production" : {
57-
"browserTarget" : "Angular11SocialLogin:build:production"
63+
"browserTarget" : "Angular12SocialLogin:build:production"
5864
}
5965
}
6066
},
6167
"extract-i18n" : {
6268
"builder" : "@angular-devkit/build-angular:extract-i18n",
6369
"options" : {
64-
"browserTarget" : "Angular11SocialLogin:build"
70+
"browserTarget" : "Angular12SocialLogin:build"
6571
}
6672
},
6773
"test" : {
@@ -87,11 +93,11 @@
8793
"builder" : "@angular-devkit/build-angular:protractor",
8894
"options" : {
8995
"protractorConfig" : "e2e/protractor.conf.js",
90-
"devServerTarget" : "Angular11SocialLogin:serve"
96+
"devServerTarget" : "Angular12SocialLogin:serve"
9197
},
9298
"configurations" : {
9399
"production" : {
94-
"devServerTarget" : "Angular11SocialLogin:serve:production"
100+
"devServerTarget" : "Angular12SocialLogin:serve:production"
95101
}
96102
}
97103
}
@@ -105,15 +111,20 @@
105111
"build" : {
106112
"builder" : "@angular-devkit/build-angular:browser",
107113
"options" : {
108-
"outputPath" : "dist/Angular11SocialLogin",
114+
"outputPath" : "dist/Angular12SocialLogin",
109115
"index" : ".design/index.html",
110116
"main" : ".design/main.ts",
111117
"polyfills" : ".design/polyfills.ts",
112118
"tsConfig" : "tsconfig.app.json",
113-
"aot" : true,
114119
"assets" : [ ".design/favicon.ico", ".design/assets" ],
115120
"styles" : [ ".design/styles.css" ],
116-
"scripts" : [ ]
121+
"scripts" : [ ],
122+
"vendorChunk" : true,
123+
"extractLicenses" : false,
124+
"buildOptimizer" : false,
125+
"sourceMap" : true,
126+
"optimization" : false,
127+
"namedChunks" : true
117128
},
118129
"configurations" : {
119130
"production" : {
@@ -138,7 +149,8 @@
138149
"maximumError" : "10kb"
139150
} ]
140151
}
141-
}
152+
},
153+
"defaultConfiguration" : ""
142154
},
143155
"serve" : {
144156
"builder" : "@angular-devkit/build-angular:dev-server",

0 commit comments

Comments
 (0)