Skip to content

Commit 7276245

Browse files
committedNov 12, 2015
Do not use "^" versions, ever, use ~
Today ugilfy.js 2.6.0 broke everything in our setup, we can not go back to an older version, because you specified ^2.5.0.
1 parent b8bd228 commit 7276245

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed
 

‎package.json

+11-11
Original file line numberDiff line numberDiff line change
@@ -15,19 +15,19 @@
1515
"test": "grunt test"
1616
},
1717
"dependencies": {
18-
"chalk": "^1.0.0",
19-
"lodash": "^3.2.0",
20-
"maxmin": "^1.0.0",
21-
"uglify-js": "^2.5.0",
22-
"uri-path": "^1.0.0"
18+
"chalk": "~1.0.0",
19+
"lodash": "~3.2.0",
20+
"maxmin": "~1.0.0",
21+
"uglify-js": "~2.5.0",
22+
"uri-path": "~1.0.0"
2323
},
2424
"devDependencies": {
25-
"grunt": "^0.4.2",
26-
"grunt-cli": "^0.1.13",
27-
"grunt-contrib-clean": "^0.6.0",
28-
"grunt-contrib-internal": "^0.4.12",
29-
"grunt-contrib-jshint": "^0.11.0",
30-
"grunt-contrib-nodeunit": "^0.4.0"
25+
"grunt": "~0.4.2",
26+
"grunt-cli": "~0.1.13",
27+
"grunt-contrib-clean": "~0.6.0",
28+
"grunt-contrib-internal": "~0.4.12",
29+
"grunt-contrib-jshint": "~0.11.0",
30+
"grunt-contrib-nodeunit": "~0.4.0"
3131
},
3232
"peerDependencies": {
3333
"grunt": ">=0.4.0"

0 commit comments

Comments
 (0)
Please sign in to comment.