You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

65 lines
1.3 KiB

'use strict';
module.exports = function (grunt) {
require('time-grunt')(grunt);
grunt.initConfig({
browserify: {
browser: {
src: [ require('./package.json').main ],
dest: './browser/shortid.js'
},
tests: {
src: [
'./test/**/*.test.js'
],
dest: './browser/shortid.test.js'
}
},
open: {
test: {
path: './test/index.html',
app: 'Google Chrome'
}
},
mochaTest: {
notify: {
src: 'test/**/*.test.js',
options: {
reporter: 'spec',
timeout: 50000
}
}
},
jshint: {
options: {
jshintrc: '.jshintrc'
},
all: [
'Gruntfile.js',
'lib/**/*.js',
'tests/*'
]
}
});
require('load-grunt-tasks')(grunt);
grunt.registerTask('build', [
'browserify'
]);
grunt.registerTask('test', [
'jshint',
'mochaTest'
]);
grunt.registerTask('default', [
'build',
'test'
]);
};