mirror of
https://github.com/optilude/xlsx-template.git
synced 2026-07-02 08:27:39 +08:00
21 lines
454 B
JavaScript
21 lines
454 B
JavaScript
module.exports = function(grunt) {
|
|
|
|
grunt.initConfig({
|
|
pkg: grunt.file.readJSON('package.json'),
|
|
|
|
// Tests, via Buster
|
|
buster: {
|
|
default: {
|
|
test: {
|
|
config: 'test/buster.js',
|
|
'config-group': 'node'
|
|
}
|
|
}
|
|
}
|
|
});
|
|
|
|
grunt.loadNpmTasks('grunt-buster');
|
|
|
|
// Aliases
|
|
grunt.registerTask('test', ['buster:default']);
|
|
}; |