X Tutup
Skip to content

Commit 21542ed

Browse files
IgorMinarjelbourn
authored andcommitted
fix(npm): move es6-shim from devDependencies to dependencies
To be later used as a peerDependency in the generated package.json 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 c39f4c3 commit 21542ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
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-shim": "^0.33.3",
3435
"reflect-metadata": "0.1.2",
3536
"rxjs": "5.0.0-alpha.13",
3637
"zone.js": "0.5.8"
@@ -53,7 +54,6 @@
5354
"clang-format": "^1.0.32",
5455
"conventional-changelog": "^0.2.1",
5556
"del": "~1",
56-
"es6-shim": "^0.33.3",
5757
"firefox-profile": "^0.3.4",
5858
"fs-extra": "^0.18.0",
5959
"glob": "^4.0.6",

0 commit comments

Comments
 (0)
X Tutup