Skip to content

Commit 32fe6e3

Browse files
haphuttuukka
authored andcommitted
Allow higher dependency versions than earlier.
Especially grunt-contrib-coffee 0.7.0 changed source map support but the version was not allowed by our earlier requirements. The requirements are now changed so that only the major version of a dependency is not allowed to change. At this point of the project it might be sensible to keep changing our code to match any significant changes in the dependencies instead of freezing on some unsupported version 0.1.2, for example. To facilitate updating dependencies, the list has been moved from devDependencies to dependencies because of a bug/feature in npm update: https://github.com/isaacs/npm/issues/2369
1 parent ba9a5cc commit 32fe6e3

File tree

1 file changed

+11
-9
lines changed

1 file changed

+11
-9
lines changed

package.json

+11-9
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,16 @@
1313
"author": "",
1414
"license": "EUPL v1.2/AGPLv3",
1515
"readmeFilename": "README.md",
16-
"devDependencies": {
17-
"grunt": "~0.4.1",
18-
"grunt-contrib-watch": "~0.3.1",
19-
"grunt-contrib-coffee": "~0.6.0",
20-
"grunt-contrib-connect": "~0.2.0",
21-
"grunt-exec": "~0.4.0",
22-
"grunt-testem": "~0.3.4",
23-
"mocha": "~1.9.0",
24-
"chai": "~1.5.0"
16+
"//": ["Using dependencies instead of devDependencies to enable npm update.",
17+
"More info at: https://github.com/isaacs/npm/issues/2369"],
18+
"dependencies": {
19+
"grunt": "0.x",
20+
"grunt-contrib-watch": "0.x",
21+
"grunt-contrib-coffee": "0.x",
22+
"grunt-contrib-connect": "0.x",
23+
"grunt-exec": "0.x",
24+
"grunt-testem": "0.x",
25+
"mocha": "1.x",
26+
"chai": "1.x"
2527
}
2628
}

0 commit comments

Comments
 (0)