X Tutup
Skip to content

Commit c1e3ea9

Browse files
IgorMinarjelbourn
authored andcommitted
build(npm): add es6-promise as a dependency
This is actually an inherited dependency that comes from zone.js. See related issue: angular/zone.js#212 It would be better to make this one an optionalPeerDependency but npm currently doesn't support making peerDependencies optional. See: npm/npm#3066
1 parent 21542ed commit c1e3ea9

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

npm-shrinkwrap.clean.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3619,6 +3619,9 @@
36193619
}
36203620
}
36213621
},
3622+
"es6-promise": {
3623+
"version": "3.0.2"
3624+
},
36223625
"es6-shim": {
36233626
"version": "0.33.10"
36243627
},

npm-shrinkwrap.json

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

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
"test": "gulp test.all.js && gulp test.all.dart"
3232
},
3333
"dependencies": {
34+
"es6-promise": "^3.0.2",
3435
"es6-shim": "^0.33.3",
3536
"reflect-metadata": "0.1.2",
3637
"rxjs": "5.0.0-alpha.13",

0 commit comments

Comments
 (0)
X Tutup