Skip to content
This repository was archived by the owner on Dec 18, 2024. It is now read-only.

Commit d387264

Browse files
authored
build: update to Angular & CLI v12 next.8, Components v12 next.6 (#946)
1 parent 3122455 commit d387264

File tree

6 files changed

+198
-234
lines changed

6 files changed

+198
-234
lines changed

.circleci/config.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ var_5: &yarn_install
3636
var_6: &workspace_location ~/
3737

3838
orbs:
39-
build-tools: circleci/build-tools@2.7.1
39+
build-tools: circleci/build-tools@2.9.0
4040

4141
commands:
4242
store_build_output:
@@ -58,6 +58,12 @@ commands:
5858
description: Checkout and verify clean merge with master
5959
steps:
6060
- checkout
61+
- run:
62+
name: Set git user.name and user.email for rebase.
63+
# User is required for rebase.
64+
command: |
65+
git config user.name "angular-ci"
66+
git config user.email "angular-ci"
6167
- build-tools/merge-with-parent:
6268
parent: master
6369

package.json

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -34,39 +34,39 @@
3434
},
3535
"private": true,
3636
"dependencies": {
37-
"@angular/animations": "^12.0.0-next.7",
38-
"@angular/cdk": "^12.0.0-next.5",
39-
"@angular/cdk-experimental": "^12.0.0-next.5",
40-
"@angular/common": "^12.0.0-next.7",
41-
"@angular/compiler": "^12.0.0-next.7",
37+
"@angular/animations": "^12.0.0-next.8",
38+
"@angular/cdk": "^12.0.0-next.6",
39+
"@angular/cdk-experimental": "^12.0.0-next.6",
40+
"@angular/common": "^12.0.0-next.8",
41+
"@angular/compiler": "^12.0.0-next.8",
4242
"@angular/components-examples": "angular/material2-docs-content#master",
43-
"@angular/core": "^12.0.0-next.7",
44-
"@angular/forms": "^12.0.0-next.7",
45-
"@angular/google-maps": "^12.0.0-next.5",
46-
"@angular/material": "^12.0.0-next.5",
47-
"@angular/material-experimental": "^12.0.0-next.5",
48-
"@angular/material-moment-adapter": "^12.0.0-next.5",
49-
"@angular/platform-browser": "^12.0.0-next.7",
50-
"@angular/platform-browser-dynamic": "^12.0.0-next.7",
51-
"@angular/router": "^12.0.0-next.7",
52-
"@angular/youtube-player": "^12.0.0-next.5",
43+
"@angular/core": "^12.0.0-next.8",
44+
"@angular/forms": "^12.0.0-next.8",
45+
"@angular/google-maps": "^12.0.0-next.6",
46+
"@angular/material": "^12.0.0-next.6",
47+
"@angular/material-experimental": "^12.0.0-next.6",
48+
"@angular/material-moment-adapter": "^12.0.0-next.6",
49+
"@angular/platform-browser": "^12.0.0-next.8",
50+
"@angular/platform-browser-dynamic": "^12.0.0-next.8",
51+
"@angular/router": "^12.0.0-next.8",
52+
"@angular/youtube-player": "^12.0.0-next.6",
5353
"material-components-web": "10.0.0-canary.2ed2d829b.0",
5454
"moment": "^2.29.1",
5555
"rxjs": "^6.6.6",
5656
"tslib": "^2.1.0",
5757
"zone.js": "~0.11.4"
5858
},
5959
"devDependencies": {
60-
"@angular-devkit/build-angular": "^0.1200.0-next.7",
61-
"@angular/cli": "^12.0.0-next.7",
62-
"@angular/compiler-cli": "^12.0.0-next.7",
63-
"@angular/localize": "^12.0.0-next.7",
60+
"@angular-devkit/build-angular": "^0.1200.0-next.8",
61+
"@angular/cli": "^12.0.0-next.8",
62+
"@angular/compiler-cli": "^12.0.0-next.8",
63+
"@angular/localize": "^12.0.0-next.8",
6464
"@types/imagemin": "^7.0.0",
6565
"@types/jasmine": "^3.6.6",
6666
"@types/node": "^12.20.6",
6767
"@types/shelljs": "~0.8.8",
6868
"codelyzer": "^6.0.1",
69-
"firebase-tools": "^9.6.0",
69+
"firebase-tools": "^9.9.0",
7070
"imagemin": "^7.0.1",
7171
"imagemin-pngquant": "^9.0.2",
7272
"jasmine-core": "^3.6.0",

src/app/shared/stack-blitz/stack-blitz-writer.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ const dependencies = {
7171
'@angular/platform-browser': angularVersion,
7272
'@angular/platform-browser-dynamic': angularVersion,
7373
'@angular/router': angularVersion,
74-
'angular-in-memory-web-api': '~0.11.0',
74+
'angular-in-memory-web-api': '~0.12.0',
7575
'moment': '^2.29.1',
7676
'rxjs': '^6.6.6',
7777
'tslib': '^2.1.0',
@@ -91,7 +91,7 @@ const testDependencies = {
9191
'@angular/platform-browser-dynamic': angularVersion,
9292
'@angular/router': angularVersion,
9393
'@types/jasmine': '^3.6.6',
94-
'angular-in-memory-web-api': '~0.11.0',
94+
'angular-in-memory-web-api': '~0.12.0',
9595
'jasmine-core': '^3.6.0',
9696
'moment': '^2.29.1',
9797
'rxjs': '^6.6.6',

src/assets/stack-blitz-tests/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@
2222
"@angular/platform-browser": "^12.0.0-next.0",
2323
"@angular/platform-browser-dynamic": "^12.0.0-next.0",
2424
"@angular/router": "^12.0.0-next.0",
25-
"angular-in-memory-web-api": "~0.11.0",
25+
"angular-in-memory-web-api": "~0.12.0",
2626
"moment": "^2.29.1",
2727
"rxjs": "^6.6.6",
2828
"tslib": "^2.1.0",
2929
"zone.js": "^0.11.4"
3030
},
3131
"devDependencies": {
32-
"@angular-devkit/build-angular": "0.1200.0-next.7",
33-
"@angular/cli": "^12.0.0-next.7",
32+
"@angular-devkit/build-angular": "0.1200.0-next.8",
33+
"@angular/cli": "^12.0.0-next.8",
3434
"@angular/compiler-cli": "^12.0.0-next.0",
3535
"@angular/language-service": "^12.0.0-next.0",
3636
"@angular/localize": "^12.0.0-next.0",

src/assets/stack-blitz/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@
2222
"@angular/platform-browser": "^12.0.0-next.0",
2323
"@angular/platform-browser-dynamic": "^12.0.0-next.0",
2424
"@angular/router": "^12.0.0-next.0",
25-
"angular-in-memory-web-api": "~0.11.0",
25+
"angular-in-memory-web-api": "~0.12.0",
2626
"moment": "^2.29.1",
2727
"rxjs": "^6.6.6",
2828
"tslib": "^2.1.0",
2929
"zone.js": "^0.11.4"
3030
},
3131
"devDependencies": {
32-
"@angular-devkit/build-angular": "^0.1200.0-next.7",
33-
"@angular/cli": "^12.0.0-next.7",
32+
"@angular-devkit/build-angular": "^0.1200.0-next.8",
33+
"@angular/cli": "^12.0.0-next.8",
3434
"@angular/compiler-cli": "^12.0.0-next.0",
3535
"@angular/language-service": "^12.0.0-next.0",
3636
"@angular/localize": "^12.0.0-next.0",

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy