Skip to content

Commit 0000a09

Browse files
committed
Angular 13 demo
1 parent d54774c commit 0000a09

File tree

6 files changed

+184
-23
lines changed

6 files changed

+184
-23
lines changed

demos/angular2/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
.PHONY: ng2 ng4 ng5 ng6 ng7 ng8 ng9 ng10 ng11 ng12
2-
ng2 ng4 ng5 ng6 ng7 ng8 ng9 ng10 ng11 ng12:
1+
.PHONY: ng2 ng4 ng5 ng6 ng7 ng8 ng9 ng10 ng11 ng12 ng13
2+
ng2 ng4 ng5 ng6 ng7 ng8 ng9 ng10 ng11 ng12 ng13:
33
rm -f angular.json tsconfig.app.json src/polyfills.ts
44
cp versions/package.json-$@ package.json
55
if [ -e versions/angular.json-$@ ]; then cp versions/angular.json-$@ angular.json; fi
@@ -13,7 +13,7 @@ ng2 ng4 ng5 ng6 ng7 ng8 ng9 ng10 ng11 ng12:
1313

1414
.PHONY: all
1515
all:
16-
for i in 2 4 5 6 7 8 9 10 11 12; do make ng$$i; done
16+
for i in 2 4 5 6 7 8 9 10 11 12 13; do make ng$$i; done
1717

1818
.PHONY: ionic
1919
ionic:

demos/angular2/package.json

Lines changed: 21 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "angular5",
2+
"name": "angular13",
33
"version": "0.0.0",
44
"license": "MIT",
55
"scripts": {
@@ -9,30 +9,31 @@
99
},
1010
"private": true,
1111
"dependencies": {
12-
"@angular/animations": "^5.0.0",
13-
"@angular/common": "^5.0.0",
14-
"@angular/compiler": "^5.0.0",
12+
"@angular/animations": "~13.2.0",
13+
"@angular/common": "~13.2.0",
14+
"@angular/compiler": "~13.2.0",
1515

16-
"@angular/core": "^5.0.0",
17-
"@angular/forms": "^5.0.0",
18-
"@angular/http": "^5.0.0",
19-
"@angular/platform-browser": "^5.0.0",
20-
"@angular/platform-browser-dynamic": "^5.0.0",
16+
"@angular/core": "~13.2.0",
17+
"@angular/forms": "~13.2.0",
2118

22-
"@angular/router": "^5.0.0",
23-
"core-js": "^2.4.1",
19+
"@angular/platform-browser": "~13.2.0",
20+
"@angular/platform-browser-dynamic": "~13.2.0",
2421

25-
"rxjs": "^5.5.2",
22+
"@angular/router": "~13.2.0",
2623

27-
"zone.js": "^0.8.14"
24+
25+
"rxjs": "~7.5.0",
26+
"tslib": "^2.3.0",
27+
"zone.js": "~0.11.4"
2828
},
2929
"devDependencies": {
30-
"@angular/cli": "^1.5.3",
31-
"@angular/compiler-cli": "^5.0.0",
32-
"@angular/language-service": "^5.0.0",
33-
"@types/node": "~6.0.60",
34-
"ts-node": "~3.2.0",
35-
"tslint": "~5.7.0",
36-
"typescript": "~2.4.2"
30+
"@angular-devkit/build-angular": "~13.2.1",
31+
"@angular/cli": "~13.2.1",
32+
"@angular/compiler-cli": "~13.2.0",
33+
34+
"@types/node": "^12.11.1",
35+
36+
37+
"typescript": "~4.5.2"
3738
}
3839
}

demos/angular2/versions/angular.json-ng13

Lines changed: 106 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

demos/angular2/versions/package.json-ng13

Lines changed: 39 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

demos/angular2/versions/polyfills.ts-ng13

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

demos/angular2/versions/tsconfig.app.json-ng13

Lines changed: 14 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)