Skip to content
This repository was archived by the owner on May 29, 2022. It is now read-only.

Commit 25f159f

Browse files
7Passniieani
authored andcommitted
fix(package): move typings to devDependencies (#21)
* Move typings to devDependencies Leaving @types in dependencies causes them to be installed when @easy-webpack/core is installed, inferring with the application using easy-webpack. Typings are not required for using easy-webpack, only for development of easy-webpack. It's especially important in case of @types/nodes which overrides some methods such as setTimeout which causes compilation error.
1 parent 346c61a commit 25f159f

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,16 +36,16 @@
3636
"tslint": "^3.11.0",
3737
"tslint-config-standard": "^1.2.2",
3838
"typescript": "^2.0.0",
39-
"webpack": "beta"
40-
},
41-
"dependencies": {
42-
"@easy-webpack/assign": "^0.9.9 || ^1.0.0",
39+
"webpack": "beta",
4340
"@types/debug": "^0.0.29",
44-
"@types/lodash": "^4.14.37",
4541
"@types/node": "^6.0.46",
4642
"@types/source-map": "^0.1.28",
4743
"@types/uglify-js": "^2.6.28",
48-
"@types/webpack": "^1.12.35",
44+
"@types/webpack": "^1.12.35"
45+
},
46+
"dependencies": {
47+
"@types/lodash": "^4.14.37",
48+
"@easy-webpack/assign": "^0.9.9 || ^1.0.0",
4949
"lodash": "^4.13.1"
5050
},
5151
"ava": {

0 commit comments

Comments
 (0)