Skip to content

Commit f320fb2

Browse files
alan-agius4vikerman
authored andcommitted
build: update @angular to version 9.0.0-next.15
1 parent 40140fa commit f320fb2

File tree

7 files changed

+86
-84
lines changed

7 files changed

+86
-84
lines changed

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,8 @@
8282
"typescript": "3.6.4"
8383
},
8484
"devDependencies": {
85-
"@angular/compiler": "9.0.0-next.14",
86-
"@angular/compiler-cli": "9.0.0-next.14",
85+
"@angular/compiler": "9.0.0-next.15",
86+
"@angular/compiler-cli": "9.0.0-next.15",
8787
"@bazel/bazel": "1.0.0",
8888
"@bazel/buildifier": "0.29.0",
8989
"@bazel/jasmine": "0.39.0",

packages/angular_devkit/build_angular/package.json

+12-12
Original file line numberDiff line numberDiff line change
@@ -69,20 +69,20 @@
6969
"worker-plugin": "3.2.0"
7070
},
7171
"devDependencies": {
72-
"@angular/animations": "9.0.0-next.14",
72+
"@angular/animations": "9.0.0-next.15",
7373
"@angular/cdk": "8.2.3",
74-
"@angular/common": "9.0.0-next.14",
75-
"@angular/compiler": "9.0.0-next.14",
76-
"@angular/compiler-cli": "9.0.0-next.14",
77-
"@angular/core": "9.0.0-next.14",
78-
"@angular/forms": "9.0.0-next.14",
79-
"@angular/localize": "9.0.0-next.14",
74+
"@angular/common": "9.0.0-next.15",
75+
"@angular/compiler": "9.0.0-next.15",
76+
"@angular/compiler-cli": "9.0.0-next.15",
77+
"@angular/core": "9.0.0-next.15",
78+
"@angular/forms": "9.0.0-next.15",
79+
"@angular/localize": "9.0.0-next.15",
8080
"@angular/material": "8.2.3",
81-
"@angular/platform-browser": "9.0.0-next.14",
82-
"@angular/platform-browser-dynamic": "9.0.0-next.14",
83-
"@angular/platform-server": "9.0.0-next.14",
84-
"@angular/router": "9.0.0-next.14",
85-
"@angular/service-worker": "9.0.0-next.14",
81+
"@angular/platform-browser": "9.0.0-next.15",
82+
"@angular/platform-browser-dynamic": "9.0.0-next.15",
83+
"@angular/platform-server": "9.0.0-next.15",
84+
"@angular/router": "9.0.0-next.15",
85+
"@angular/service-worker": "9.0.0-next.15",
8686
"codelyzer": "^5.0.0",
8787
"bootstrap": "^4.0.0",
8888
"font-awesome": "^4.7.0",

packages/angular_devkit/build_angular/src/utils/load-translations.ts

+8-6
Original file line numberDiff line numberDiff line change
@@ -27,36 +27,38 @@ export async function createTranslationLoader(): Promise<TranslationLoader> {
2727

2828
async function importParsers() {
2929
try {
30+
// In @angular/localize version 9.0.0-next.15 the parsers were located in the below locations.
3031
return {
3132
json: new (await import(
3233
// tslint:disable-next-line:trailing-comma no-implicit-dependencies
33-
'@angular/localize/src/tools/src/translate/translation_files/translation_parsers/simple_json/simple_json_translation_parser'
34+
'@angular/localize/src/tools/src/translate/translation_files/translation_parsers/simple_json_translation_parser'
3435
)).SimpleJsonTranslationParser(),
3536
xlf: new (await import(
3637
// tslint:disable-next-line:trailing-comma no-implicit-dependencies
37-
'@angular/localize/src/tools/src/translate/translation_files/translation_parsers/xliff1/xliff1_translation_parser'
38+
'@angular/localize/src/tools/src/translate/translation_files/translation_parsers/xliff1_translation_parser'
3839
)).Xliff1TranslationParser(),
3940
xlf2: new (await import(
4041
// tslint:disable-next-line:trailing-comma no-implicit-dependencies
41-
'@angular/localize/src/tools/src/translate/translation_files/translation_parsers/xliff2/xliff2_translation_parser'
42+
'@angular/localize/src/tools/src/translate/translation_files/translation_parsers/xliff2_translation_parser'
4243
)).Xliff2TranslationParser(),
4344
};
4445
} catch {
46+
// Prior to @angular/localize version 9.0.0-next.15 the parsers were located in the below locations.
4547
return {
4648
json: new (await import(
4749
// @ts-ignore
4850
// tslint:disable-next-line:trailing-comma no-implicit-dependencies
49-
'@angular/localize/src/tools/src/translate/translation_files/translation_parsers/simple_json_translation_parser'
51+
'@angular/localize/src/tools/src/translate/translation_files/translation_parsers/simple_json/simple_json_translation_parser'
5052
)).SimpleJsonTranslationParser(),
5153
xlf: new (await import(
5254
// @ts-ignore
5355
// tslint:disable-next-line:trailing-comma no-implicit-dependencies
54-
'@angular/localize/src/tools/src/translate/translation_files/translation_parsers/xliff1_translation_parser'
56+
'@angular/localize/src/tools/src/translate/translation_files/translation_parsers/xliff1/xliff1_translation_parser'
5557
)).Xliff1TranslationParser(),
5658
xlf2: new (await import(
5759
// @ts-ignore
5860
// tslint:disable-next-line:trailing-comma no-implicit-dependencies
59-
'@angular/localize/src/tools/src/translate/translation_files/translation_parsers/xliff2_translation_parser'
61+
'@angular/localize/src/tools/src/translate/translation_files/translation_parsers/xliff2/xliff2_translation_parser'
6062
)).Xliff2TranslationParser(),
6163
};
6264
}

packages/angular_devkit/build_ng_packagr/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
"ng-packagr": "^9.0.0-rc.0"
1515
},
1616
"devDependencies": {
17-
"@angular/compiler": "9.0.0-next.14",
18-
"@angular/compiler-cli": "9.0.0-next.14",
17+
"@angular/compiler": "9.0.0-next.15",
18+
"@angular/compiler-cli": "9.0.0-next.15",
1919
"@angular-devkit/core": "0.0.0",
2020
"ng-packagr": "~9.0.0-rc.0",
2121
"tslib": "^1.10.0"

packages/ngtools/webpack/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@
3232
"webpack": "^4.0.0"
3333
},
3434
"devDependencies": {
35-
"@angular/compiler": "9.0.0-next.14",
36-
"@angular/compiler-cli": "9.0.0-next.14",
35+
"@angular/compiler": "9.0.0-next.15",
36+
"@angular/compiler-cli": "9.0.0-next.15",
3737
"typescript": "3.6.4",
3838
"webpack": "4.41.2"
3939
}

tests/legacy-cli/e2e/ng-snapshot/package.json

+12-12
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@
22
"description": "snapshot versions of Angular for e2e testing",
33
"private": true,
44
"dependencies": {
5-
"@angular/animations": "github:angular/animations-builds#85f9884ebcc90e1b10146d56d3e4ddb334f2c90a",
6-
"@angular/common": "github:angular/common-builds#860e79de1e12c508fa2df2b75ba4e8f1630ee933",
7-
"@angular/compiler": "github:angular/compiler-builds#28919175504c9f73f4c7ae9446e416991a26e022",
8-
"@angular/compiler-cli": "github:angular/compiler-cli-builds#3d380510d0796fcc92201f77f7bf620fc6a4e235",
9-
"@angular/core": "github:angular/core-builds#8b93e1ae70e90155108ddd73c3353c41d51686ec",
10-
"@angular/forms": "github:angular/forms-builds#9c9ff43e8df9548f13000176a96ccc348335bc51",
11-
"@angular/language-service": "github:angular/language-service-builds#736f348091b205671e613a103c50131905762d3a",
12-
"@angular/localize": "github:angular/localize-builds#035e9f7a68e4862f9a3cd77e01725a6e1c5772dd",
13-
"@angular/platform-browser": "github:angular/platform-browser-builds#9c6956b43585a9d206ae61a24cd996bfd48955d8",
14-
"@angular/platform-browser-dynamic": "github:angular/platform-browser-dynamic-builds#aa080d8d6ba7b0a873a51a57164a0c5731d5687a",
15-
"@angular/platform-server": "github:angular/platform-server-builds#317d385e1308f42703583b7960dee97c4a798b73",
16-
"@angular/router": "github:angular/router-builds#289c78f9c277c720158faa27034f89ef759d3d64"
5+
"@angular/animations": "github:angular/animations-builds#ac30ba554580c061d3c0af1b947c2dadc41f28bd",
6+
"@angular/common": "github:angular/common-builds#81519bb882f4f4a635bb288837513e85ac27b16f",
7+
"@angular/compiler": "github:angular/compiler-builds#5089a1bed7cfb0a43062b3d749e7d7504c5e77bb",
8+
"@angular/compiler-cli": "github:angular/compiler-cli-builds#2f61281a3fa5077f838ccd7b67fe4255927e607a",
9+
"@angular/core": "github:angular/core-builds#457bb4e6f6cfdc37b8db46e8c1cd9ea06b0997aa",
10+
"@angular/forms": "github:angular/forms-builds#d5fb1a58893c8ca0a37f15f6e027ca0ef14597a4",
11+
"@angular/language-service": "github:angular/language-service-builds#99233eb6c7bd0784357ba2ff901949fd0c0e5e20",
12+
"@angular/localize": "github:angular/localize-builds#3b63415900cdd82d2663ead33e66904e0641686f",
13+
"@angular/platform-browser": "github:angular/platform-browser-builds#4a2559f20bd8ded16128b35c86fbc8ed1eda598e",
14+
"@angular/platform-browser-dynamic": "github:angular/platform-browser-dynamic-builds#002af234104ac5fda0aa9801cf99075bec3dd284",
15+
"@angular/platform-server": "github:angular/platform-server-builds#e5444e31215fc389367faa7ec18ed3c3c930fca5",
16+
"@angular/router": "github:angular/router-builds#7a38790e59395d466bb2f51eb43289d438284f51"
1717
}
1818
}

yarn.lock

+48-48
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
# yarn lockfile v1
33

44

5-
"@angular/[email protected].14":
6-
version "9.0.0-next.14"
7-
resolved "https://registry.yarnpkg.com/@angular/animations/-/animations-9.0.0-next.14.tgz#9c967be04f7ed1691df48bf4e517172c7d226559"
8-
integrity sha512-5JDFoXcbS9kJWZTxsFatuYwbsCwBb1kAM8WkrCrANgRxJiJ6JDiOMCL9fFmFq8ihKft4QOpuvGoH6UMkAo3mAQ==
5+
"@angular/[email protected].15":
6+
version "9.0.0-next.15"
7+
resolved "https://registry.yarnpkg.com/@angular/animations/-/animations-9.0.0-next.15.tgz#00535803601019ee49c45f2f601cd53f60a34973"
8+
integrity sha512-s4hIpoKbx/tGK+7eeUHt2OVtQw5GpFPor5SGrrMSuc8mw67kifKk5SR0lFTunc2FKP9NN3FAqx9nFsEc8Tfhcw==
99

1010
"@angular/[email protected]":
1111
version "8.2.3"
@@ -16,15 +16,15 @@
1616
optionalDependencies:
1717
parse5 "^5.0.0"
1818

19-
"@angular/[email protected].14":
20-
version "9.0.0-next.14"
21-
resolved "https://registry.yarnpkg.com/@angular/common/-/common-9.0.0-next.14.tgz#a83381e097efc05e173f6b39ba8995e85217ae8a"
22-
integrity sha512-2YfiXyn0vconAT6WDlJH/iIlhdt+/utHnHERE3rEKqL4+xfoGsmRJ0+pm7b729/JlWCykDVxfU4msWvl6EC+pw==
19+
"@angular/[email protected].15":
20+
version "9.0.0-next.15"
21+
resolved "https://registry.yarnpkg.com/@angular/common/-/common-9.0.0-next.15.tgz#969467f74a5d48d5ac2124b8b432713ba4e35b2e"
22+
integrity sha512-OU19ANOPhee+T7GX4itD8dE+3LCG9rNiw8vVlbN+Uy3soHPKPoiouugnWtK0I5RP5brZC0MEDrhkSKkWg8u9Dg==
2323

24-
"@angular/[email protected].14":
25-
version "9.0.0-next.14"
26-
resolved "https://registry.yarnpkg.com/@angular/compiler-cli/-/compiler-cli-9.0.0-next.14.tgz#d455935c191deadaf5b27807b0eb0718b2711ae1"
27-
integrity sha512-5mAnqyMtMwKGMgScJDzNC+VCZXsbOf+/JIoPJFoSgo0J2j4tAQzEUW7Sq2PCdKxQRzz/k5Go8GWEPQeDz0hGRQ==
24+
"@angular/[email protected].15":
25+
version "9.0.0-next.15"
26+
resolved "https://registry.yarnpkg.com/@angular/compiler-cli/-/compiler-cli-9.0.0-next.15.tgz#8ec3bfa96de9d959490a8fd23a48ba0799047bdf"
27+
integrity sha512-6XuiGdWd/+bAd8BO8PcNE7bQpHSsfXqP3nBmuDtC4kRVxEnfPyPwzHsLig6tn3tEswLhcHs42owiengXe31kUQ==
2828
dependencies:
2929
canonical-path "1.0.0"
3030
chokidar "^2.1.1"
@@ -37,25 +37,25 @@
3737
source-map "^0.6.1"
3838
yargs "13.1.0"
3939

40-
"@angular/[email protected].14":
41-
version "9.0.0-next.14"
42-
resolved "https://registry.yarnpkg.com/@angular/compiler/-/compiler-9.0.0-next.14.tgz#d590eee10ac0e8d9cd27400f481f5b4553fa533f"
43-
integrity sha512-6DazT5cunWrGu+035l8IfMRadI5Z6vRe2kZoBF8OS8XldYL3cMZCfpY4WEmmcRRM+41r9QP/FTyAbZFQeMTrog==
40+
"@angular/[email protected].15":
41+
version "9.0.0-next.15"
42+
resolved "https://registry.yarnpkg.com/@angular/compiler/-/compiler-9.0.0-next.15.tgz#cc6157d7d9c63e5dfbbb37f03d9a06ee738eefbc"
43+
integrity sha512-F88fuv6SO2nCDAbvP8cAynxg8KWO1ouUyWVVYH0FUHKw/kWWgSUqax4CB7XtO6NVbpol4IOssUXx/hG/D5XCZA==
4444

45-
"@angular/[email protected].14":
46-
version "9.0.0-next.14"
47-
resolved "https://registry.yarnpkg.com/@angular/core/-/core-9.0.0-next.14.tgz#b13f0771e52ea931bb845a1b040b4e83b47ba70f"
48-
integrity sha512-/NZAqgbSCoEehTqlnEVIcPdb4UWISnetbkEai7F4PLvoqey3T1qiTdcuQkVcZAK2ahhC89y1FgUbR1biatHrnA==
45+
"@angular/[email protected].15":
46+
version "9.0.0-next.15"
47+
resolved "https://registry.yarnpkg.com/@angular/core/-/core-9.0.0-next.15.tgz#66fb9ced44f6e72a3ccc5e46d33f32a2f6ccf830"
48+
integrity sha512-ZvhxaHl1dHwseMbMbYfs134yyUZIq13bqejAfSp/ZalRsTV2nbWlBMbYhjemsHSS1UWNb3DXfUXJTKQzqk8QZQ==
4949

50-
"@angular/[email protected].14":
51-
version "9.0.0-next.14"
52-
resolved "https://registry.yarnpkg.com/@angular/forms/-/forms-9.0.0-next.14.tgz#fcb15807d2621e90423eccd59bd5852892d523e0"
53-
integrity sha512-4DpJSU5MCU15Whmcwt+oDOmDUALo1bIagOr0PqhL7ZQqVyuciOGXrQJNMKXvlM0yCZOHlvkDJw/egTmROkfzDg==
50+
"@angular/[email protected].15":
51+
version "9.0.0-next.15"
52+
resolved "https://registry.yarnpkg.com/@angular/forms/-/forms-9.0.0-next.15.tgz#8baefe67e63c64a1104efa10ca8eb86268aa0d3d"
53+
integrity sha512-OudfUyJp2k8x+dgb3NB5i7RSjXT1ImKLUZ2xmsNxtbhijpAVgE2wZ224D/wLiwXqUMRcMnPdz6rnT+Fzuui1jw==
5454

55-
"@angular/[email protected].14":
56-
version "9.0.0-next.14"
57-
resolved "https://registry.yarnpkg.com/@angular/localize/-/localize-9.0.0-next.14.tgz#c39ff2f5aa7c66de335a426245e7f7bd170edfee"
58-
integrity sha512-ZzjGVaFZwnFL9vVXFwxbcwpK19aKNSbbWAORGozV8c5cTkoc1AxmDS7ZvvDrFmqM15Y1Ju/6GNNQK+skm8Wqgw==
55+
"@angular/[email protected].15":
56+
version "9.0.0-next.15"
57+
resolved "https://registry.yarnpkg.com/@angular/localize/-/localize-9.0.0-next.15.tgz#f3a385b76221137da9fcc72e0c1e9767468959d1"
58+
integrity sha512-0h9NzKiEAqsTSNFSf7IVCrZJse+uvx0Ncb6FomW93AJFBVvdWiNfllRJjIzPkyPwC/dnoYhUaF/I9+4q7qxipA==
5959
dependencies:
6060
"@babel/core" "^7.5.5"
6161
glob "7.1.2"
@@ -68,33 +68,33 @@
6868
dependencies:
6969
tslib "^1.7.1"
7070

71-
"@angular/[email protected].14":
72-
version "9.0.0-next.14"
73-
resolved "https://registry.yarnpkg.com/@angular/platform-browser-dynamic/-/platform-browser-dynamic-9.0.0-next.14.tgz#2c7f6c8374152ec292f48ec57db62763bf5711f9"
74-
integrity sha512-REkbvBOIE4ssmnJI8nOUSvUxm4dVlfqinqgv4sQdV2G8ioJXFtWkqfjAFvR7QU1/Dadaj2Oo+5Yau110V/sbMw==
71+
"@angular/[email protected].15":
72+
version "9.0.0-next.15"
73+
resolved "https://registry.yarnpkg.com/@angular/platform-browser-dynamic/-/platform-browser-dynamic-9.0.0-next.15.tgz#385c459c267ff2f9443a4f698a155cbdf7fde7ea"
74+
integrity sha512-oiXozg87f+ijco61Ao9NLy7/O0pBntzXL0FDE+dVZYWxJgb4dHsq0w/ojL0rlLrqLxaxANtEszfsSlEUoC5drg==
7575

76-
"@angular/[email protected].14":
77-
version "9.0.0-next.14"
78-
resolved "https://registry.yarnpkg.com/@angular/platform-browser/-/platform-browser-9.0.0-next.14.tgz#b741e583a60bef778f92b285469c2d0d00ab9a7a"
79-
integrity sha512-ZgB9T2hZytqSr7xpYacLgct5WVQ+xKlsrLymK++SffaGKzj0zlkAMj3mVF+12Zec0Ic5NpG8oTIovH+Lk57IuQ==
76+
"@angular/[email protected].15":
77+
version "9.0.0-next.15"
78+
resolved "https://registry.yarnpkg.com/@angular/platform-browser/-/platform-browser-9.0.0-next.15.tgz#9c698ac1b2c2f2dfba5205f6875ebd5f0504c3c9"
79+
integrity sha512-rT4fMhO75cyLBICxSIX7rEBnaQvn0t/aHBA5L4FLXz/J/fgk+3OBI9pE1zRcyo+Z1vwrWZ+9eiNdmNMFFSXNAg==
8080

81-
"@angular/[email protected].14":
82-
version "9.0.0-next.14"
83-
resolved "https://registry.yarnpkg.com/@angular/platform-server/-/platform-server-9.0.0-next.14.tgz#887e948f9da265f88378aa4ec8273b22433ec951"
84-
integrity sha512-CnBa+Q13xDkr0zJlqhiShF1ovqpvOQCkMAKCPaGyByMC24nys8wNKhw/El743TREwZQXTWNfXveboSmqDVrGtA==
81+
"@angular/[email protected].15":
82+
version "9.0.0-next.15"
83+
resolved "https://registry.yarnpkg.com/@angular/platform-server/-/platform-server-9.0.0-next.15.tgz#1c13eaf94e65ec1a7a24ee2a00e78ba60f5f24c1"
84+
integrity sha512-9FmJfwZHrVj7YHvACflAnI0tJ8wpAccymq3Pvr9kHaLnPwD1xeoGGfHINqWTjUoHldpltfHiiwcHXQ3GxbmZrw==
8585
dependencies:
8686
domino "^2.1.2"
8787
xhr2 "^0.1.4"
8888

89-
"@angular/[email protected].14":
90-
version "9.0.0-next.14"
91-
resolved "https://registry.yarnpkg.com/@angular/router/-/router-9.0.0-next.14.tgz#3d19e351d533657887b87d8c5abe74a56806854d"
92-
integrity sha512-Uv8Bre1JXjHUaFf6v1dtfHKPWhQiZdy/v9ZS5yZyPjX8xX0lBHQKu+Uryo9EyXldwNDIcqxi9/y4Vl+PB5d0/g==
89+
"@angular/[email protected].15":
90+
version "9.0.0-next.15"
91+
resolved "https://registry.yarnpkg.com/@angular/router/-/router-9.0.0-next.15.tgz#a0e5b07e5f40c0c7d8afd849eb69f9788da21fce"
92+
integrity sha512-klzVn6yWv0NQcE2qYdrD5EVt4ETBJSmtmfF562ibqBBOXuFyU9PY2GzkZ6Ot+rS6Ed4Q/GEg1iigEd8uqB+2lg==
9393

94-
"@angular/[email protected].14":
95-
version "9.0.0-next.14"
96-
resolved "https://registry.yarnpkg.com/@angular/service-worker/-/service-worker-9.0.0-next.14.tgz#57fd4993c14f3155dfbeb228b871dea1483066e6"
97-
integrity sha512-RAPzRfxIyq6yIOHYk+vdLxe4HuCS4S6o6+P2SnBJIkpf+do05aPbin4tmEr5rK+3wDa7QP1E14NAgCYxF0b1hA==
94+
"@angular/[email protected].15":
95+
version "9.0.0-next.15"
96+
resolved "https://registry.yarnpkg.com/@angular/service-worker/-/service-worker-9.0.0-next.15.tgz#4fec3aca0e338cc8bd1b2efa60413f928546c4b3"
97+
integrity sha512-DuUAbbLM9IMxzbNj+X0FUOyREWHd0MX0BTu5e2WJpfPRQyphGRvtNpDOWUWukkfo1RtlF7cE2rcxfzDSQMKt+w==
9898

9999
"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.5.5":
100100
version "7.5.5"

0 commit comments

Comments
 (0)