Skip to content

Commit b5032fd

Browse files
committed
fix(build): revert typescript upgrade which broke the build.
This reverts commit a7a9463. This reverts commit 59824e4.
1 parent a7a9463 commit b5032fd

File tree

6 files changed

+10
-6
lines changed

6 files changed

+10
-6
lines changed

modules/angular2/globals.ts

+1
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,6 @@ interface Window {
1919
JSON: typeof JSON;
2020
Math: typeof Math;
2121
assert: typeof assert;
22+
NaN: typeof NaN;
2223
gc(): void;
2324
}

modules/angular2/src/facade/math.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ import {global} from 'angular2/src/facade/lang';
66
export var __esModule = true;
77

88
export var Math = global.Math;
9-
export var NaN = typeof NaN;
9+
export var NaN = global.NaN;

modules/angular2/tsd.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"commit": "be0b6b394f77a59e192ad7cfec18078706e44db5"
1010
},
1111
"hammerjs/hammerjs.d.ts": {
12-
"commit": "22c44d95912a07f81c103a694330b15b92f7cb40"
12+
"commit": "be0b6b394f77a59e192ad7cfec18078706e44db5"
1313
},
1414
"jasmine/jasmine.d.ts": {
1515
"commit": "055b3172e8eb374a75826710c4d08677872620d3"
@@ -72,6 +72,9 @@
7272
"selenium-webdriver/selenium-webdriver.d.ts": {
7373
"commit": "be0b6b394f77a59e192ad7cfec18078706e44db5"
7474
},
75+
"touch-events/touch-events.d.ts": {
76+
"commit": "055b3172e8eb374a75826710c4d08677872620d3"
77+
},
7578
"zone/zone.d.ts": {
7679
"commit": "055b3172e8eb374a75826710c4d08677872620d3"
7780
}

npm-shrinkwrap.clean.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -8712,7 +8712,7 @@
87128712
},
87138713
"typescript": {
87148714
"version": "1.5.0",
8715-
"resolved": "git://github.com/mhegazy/TypeScript.git#v1.5-beta"
8715+
"resolved": "git://github.com/alexeagle/TypeScript.git#93dbbe2a2d0b42cefd02ac949e4bc8ab6b5b5823"
87168716
},
87178717
"vinyl": {
87188718
"version": "0.4.6",

npm-shrinkwrap.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@
108108
"through2": "^0.6.1",
109109
"ts2dart": "^0.3.0",
110110
"tsd": "^0.5.7",
111-
"typescript": "mhegazy/TypeScript#v1.5-beta",
111+
"typescript": "alexeagle/TypeScript#93dbbe2a2d0b42cefd02ac949e4bc8ab6b5b5823",
112112
"vinyl": "^0.4.6",
113113
"walk-sync": "^0.1.3",
114114
"xtend": "^4.0.0",

0 commit comments

Comments
 (0)