Skip to content

Commit 4115cda

Browse files
committed
Merge pull request #24 from ssafejava/devDependencies
Upgrade to grunt 0.4.0, reduce devDependencies down to grunt-contrib-coffee.
2 parents 09e4a55 + 3bd92ba commit 4115cda

File tree

3 files changed

+11
-8
lines changed

3 files changed

+11
-8
lines changed

grunt.js renamed to Gruntfile.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
module.exports = function(grunt) {
22

3-
grunt.loadNpmTasks('grunt-contrib');
3+
grunt.loadNpmTasks('grunt-contrib-coffee');
44

55
// Project configuration.
66
grunt.initConfig({
77
pkg: '<json:package.json>',
88
coffee: {
99
compile: {
1010
files: {
11-
'dist/*.js': 'lib/*.coffee'
11+
'dist/longjohn.js': 'lib/longjohn.coffee'
1212
}
1313
}
1414
}

dist/longjohn.js

Lines changed: 7 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626
"node": ">= 0.6.0"
2727
},
2828
"devDependencies": {
29-
"grunt": "~0.3.15",
30-
"grunt-contrib": "~0.3.0",
29+
"grunt": "~0.4.0",
30+
"grunt-contrib-coffee": "~0.7.0",
3131
"mocha": "latest",
3232
"coffee-script": "latest"
3333
},

0 commit comments

Comments
 (0)