Skip to content

Commit 3c1eaf9

Browse files
Move grunt from devDependencies to dependencies
1 parent b6de53d commit 3c1eaf9

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

Gruntfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module.exports = function (grunt) {
2-
require('matchdep').filterDev('grunt-*').forEach(grunt.loadNpmTasks);
2+
require('matchdep').filter('grunt-*').forEach(grunt.loadNpmTasks);
33

44
grunt.initConfig({
55
// clean: [

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,9 @@
55
"bower": "^1.4.1",
66
"express": "^4.13.4",
77
"express-sslify": "^1.0.1",
8-
"grunt": "^0.4.5",
98
"marked": "^0.3.5",
10-
"serve": "*"
11-
},
12-
"devDependencies": {
13-
"expect.js": "^0.3.1",
9+
"serve": "*",
10+
"grunt": "^0.4.5",
1411
"grunt-cli": "^1.2.0",
1512
"grunt-contrib-clean": "^0.6.0",
1613
"grunt-contrib-concat": "^0.5.0",
@@ -23,7 +20,10 @@
2320
"grunt-contrib-uglify": "^0.5.1",
2421
"grunt-contrib-watch": "^0.6.1",
2522
"grunt-mocha-phantomjs": "0.7.0",
26-
"grunt-usemin": "^2.0.2",
23+
"grunt-usemin": "^2.0.2"
24+
},
25+
"devDependencies": {
26+
"expect.js": "^0.3.1",
2727
"matchdep": "~0.3.0"
2828
},
2929
"scripts": {

0 commit comments

Comments
 (0)