chore(shrinkwrap): update dependencies to latest

Also, our package.json was out-of-sync with npm-shrinkwrap.json; see https://github.com/angular/angular/issues/1737
This includes a fix for the shrinkwrapping of ts2dart; see https://github.com/angular/ts2dart/issues/138
This commit is contained in:
Alex Eagle 2015-05-07 13:25:02 -07:00
parent 62bf777ef1
commit 1daa8aa3a1
5 changed files with 3519 additions and 4304 deletions

View File

@ -6,8 +6,7 @@ declare var assert: any;
declare var global: Window; declare var global: Window;
type int = number; type int = number;
interface List<T> extends Array<T> { interface List<T> extends Array<T> {}
}
interface Window { interface Window {
Object: typeof Object; Object: typeof Object;

File diff suppressed because it is too large Load Diff

6732
npm-shrinkwrap.json generated

File diff suppressed because it is too large Load Diff

View File

@ -27,7 +27,7 @@
"es6-module-loader": "^0.9.2", "es6-module-loader": "^0.9.2",
"googleapis": "1.0.x", "googleapis": "1.0.x",
"gulp-insert": "^0.4.0", "gulp-insert": "^0.4.0",
"gulp-modify": "0.0.4", "gulp-modify": "0.0.5",
"gulp-replace": "^0.5.3", "gulp-replace": "^0.5.3",
"node-uuid": "1.4.x", "node-uuid": "1.4.x",
"reflect-metadata": "^0.1.0", "reflect-metadata": "^0.1.0",
@ -108,7 +108,7 @@
"temp": "^0.8.1", "temp": "^0.8.1",
"ternary-stream": "^1.2.3", "ternary-stream": "^1.2.3",
"through2": "^0.6.1", "through2": "^0.6.1",
"ts2dart": "^0.4.8", "ts2dart": "^0.5.0",
"tsd": "^0.5.7", "tsd": "^0.5.7",
"typescript": "alexeagle/TypeScript#error_is_class", "typescript": "alexeagle/TypeScript#error_is_class",
"vinyl": "^0.4.6", "vinyl": "^0.4.6",

View File

@ -64,7 +64,7 @@ interface BroccoliTree {
interface OldBroccoliTree { interface OldBroccoliTree {
read ? (readTree: (tree: BroccoliTree) => Promise<string>) : (Promise<string>| string); read?(readTree: (tree: BroccoliTree) => Promise<string>): (Promise<string>| string);
} }