Skip to content

Commit d0de81b

Browse files
committed
updated angular 2 to 2.2.1
1 parent 1e54ee8 commit d0de81b

File tree

17 files changed

+26
-20
lines changed

17 files changed

+26
-20
lines changed

.gitignore

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,10 @@ webdriver-java/chromedriver
4141
webdriver-java/results/
4242
webdriver-ts/results/
4343
webdriver-ts/typings/
44-
webdriver-ts/.vscode/
44+
webdriver-ts/.vscode/
45+
46+
yarn.lock
47+
48+
# angular 2 aot
49+
angular-*/lib/
50+
**/app.ngfactory.ts

angular-v2.0.0/index.html renamed to angular-v2.2.1/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE html>
22
<html>
33
<head>
4-
<title>Angular v2.0.0</title>
4+
<title>Angular v2.2.1</title>
55
<meta charset="utf-8" />
66
<link href="../css/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet" />
77
<link href="../css/main.css" rel="stylesheet" />

angular-v2.0.0/package.json renamed to angular-v2.2.1/package.json

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -12,25 +12,25 @@
1212
},
1313
"license": "MIT",
1414
"dependencies": {
15-
"@angular/common": "2.0.0",
16-
"@angular/compiler": "2.0.0",
17-
"@angular/compiler-cli": "0.6.2",
18-
"@angular/core": "2.0.0",
19-
"@angular/platform-browser": "2.0.0",
20-
"@angular/platform-browser-dynamic": "2.0.0",
21-
"@angular/platform-server": "2.0.0",
15+
"@angular/common": "2.2.1",
16+
"@angular/compiler": "2.2.1",
17+
"@angular/compiler-cli": "2.2.1",
18+
"@angular/core": "2.2.1",
19+
"@angular/platform-browser": "2.2.1",
20+
"@angular/platform-browser-dynamic": "2.2.1",
21+
"@angular/platform-server": "2.2.1",
2222
"core-js": "2.4.1",
23-
"rxjs": "5.0.0-beta.12",
24-
"zone.js": "0.6.23"
23+
"rxjs": "5.0.0-rc.3",
24+
"zone.js": "0.6.26"
2525
},
2626
"devDependencies": {
27-
"google-closure-compiler-js": "20160916.0.0",
27+
"google-closure-compiler-js": "20161024.0.0",
2828
"http-server": "0.9.0",
29-
"rollup": "0.35.15",
30-
"rollup-plugin-commonjs": "5.0.4",
29+
"rollup": "0.36.3",
30+
"rollup-plugin-commonjs": "5.0.5",
3131
"rollup-plugin-node-resolve": "2.0.0",
32-
"typescript": "2.0.2",
33-
"typings": "1.3.3",
34-
"yargs": "5.0.0"
32+
"typescript": "2.0.10",
33+
"typings": "2.0.0",
34+
"yargs": "6.4.0"
3535
}
3636
}

angular-v2.0.0/rollup.config.js renamed to angular-v2.2.1/rollup.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,15 +34,15 @@ if(argv.prod){
3434

3535
//build the AOT package
3636
var buildAOT = rollup.rollup({
37-
entry: './lib/main.aot.js',
37+
entry: './lib/src/main.aot.js',
3838
plugins: plugins
3939
})
4040
.then(writeIIFE('./dist/main.aot.js'))
4141
.catch(err => console.log(err));
4242

4343
//build the JIT package
4444
var buildJIT = rollup.rollup({
45-
entry: './lib/main.jit.js',
45+
entry: './lib/src/main.jit.js',
4646
plugins: plugins
4747
})
4848
.then(writeIIFE('./dist/main.jit.js'))

angular-v2.0.0/src/app.html renamed to angular-v2.2.1/src/app.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<div class="jumbotron">
33
<div class="row">
44
<div class="col-md-6">
5-
<h1>Angular v2.0.0</h1>
5+
<h1>Angular v2.2.1</h1>
66
</div>
77
<div class="col-md-6">
88
<div class="col-sm-6 smallpad">
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)