flocore/Gruntfile.js
Ryan X. Charles 0adbc55e82 make browser tests work by including testdata
...testdata was not being loaded correctly by the new browserify.js file, and
thus not all the tests were working. I have fixed this by including "testdata"
as one of the modules that is compiled by the browserify.js script.
2014-03-08 21:34:21 -05:00

57 lines
1.2 KiB
JavaScript

'use strict';
module.exports = function(grunt) {
//Load NPM tasks
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-mocha-test');
grunt.loadNpmTasks('grunt-markdown');
grunt.loadNpmTasks('grunt-shell');
// Project Configuration
grunt.initConfig({
shell: {
browserify: {
options: {
stdout: true
},
command: 'node ./browserify.js > browser/bundle.js',
},
browserifyData: {
command: 'browserify -t brfs -s testdata test/testdata.js -o browser/testdata.js'
},
},
watch: {
readme: {
files: ['README.md'],
tasks: ['markdown']
},
scripts: {
files: ['**/*.js', '**/*.html', '!**/node_modules/**', '!browser/bundle.js', '!browser/testdata.js'],
tasks: ['shell' /*, 'mochaTest'*/ ],
},
},
mochaTest: {
options: {
reporter: 'spec',
},
src: ['test/*.js'],
},
markdown: {
all: {
files: [{
expand: true,
src: 'README.md',
dest: '.',
ext: '.html'
}]
}
}
});
grunt.registerTask('default', ['watch']);
};