was.wm.js
/trunk/Gruntfile.js |
@@ -65,6 +65,16 @@ |
nodeunit: { |
files: ['test/**/*_test.js'] |
}, |
sass: { |
dist: { |
options: { |
style: 'expanded' |
}, |
files: { |
'css/wm.css': 'css/wm.scss' |
} |
} |
}, |
watch: { |
gruntfile: { |
files: '<%= jshint.gruntfile.src %>', |
@@ -78,6 +88,7 @@ |
}); |
|
// These plugins provide necessary tasks. |
grunt.loadNpmTasks('grunt-contrib-sass'); |
grunt.loadNpmTasks('grunt-contrib-concat'); |
grunt.loadNpmTasks('grunt-contrib-uglify-es'); |
//grunt.loadNpmTasks('grunt-contrib-nodeunit'); |
@@ -88,6 +99,7 @@ |
grunt.registerTask( |
'default', |
[ |
'sass', |
'jshint', |
//'nodeunit', |
'concat', |
/trunk/package.json |
@@ -4,11 +4,12 @@ |
}, |
"devDependencies": { |
"grunt": "~0.4.5", |
"grunt-contrib-concat": "~0.4.0", |
"grunt-contrib-jshint": "~0.11.0", |
"grunt-contrib-watch": "~0.6.1", |
"grunt-contrib-nodeunit": "~0.4.1", |
"grunt-contrib-concat": "~0.4.0", |
"grunt-contrib-uglify-es": "git+https://github.com/gruntjs/grunt-contrib-uglify.git#harmony" |
"grunt-contrib-sass": "^1.0.0", |
"grunt-contrib-uglify-es": "git+https://github.com/gruntjs/grunt-contrib-uglify.git#harmony", |
"grunt-contrib-watch": "~0.6.1" |
}, |
"name": "was.wm.js", |
"description": "Original repo at http://svn.grimore.org/was.wm.js", |