File: D:/HostingSpaces/RImmers2/portal.photomenu.nl/wwwroot/node_modules/modelo/Gruntfile.js
/*jslint node: true, indent: 2, passfail: true */
"use strict";
module.exports = function (grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
jslint: {
all: {
src: ['modelo/*'],
exclude: ['test/*', 'Gruntfile.js'],
directives: {
node: true,
browser: true,
indent: 2,
passfail: true
},
options: {
edition: 'latest'
}
}
},
mochaTest: {
test: {
options: {
reporter: 'spec'
},
src: ['test/*.js']
}
},
browserify: {
dist: {
files: {
'build/modelo.browser.js': ['modelo/*']
},
options: {
bundleOptions: {
"standalone": "modelo"
}
},
},
tests: {
files: {
'build/modelo.tests.browser.js': ['test/*.spec.js']
},
options: {}
}
},
uglify: {
options: {
banner: '/*! <%= pkg.name %> <%= grunt.template.today("yyyy-mm-dd") %> */\n'
},
build: {
files: {
'build/modelo.browser.min.js': ['build/modelo.browser.js'],
'build/modelo.tests.browser.min.js': ['build/modelo.tests.browser.js']
},
}
},
shell: {
prepareBrowserTests: {
command: 'test/install_libs'
},
benchmark: {
command: function (path) {
return 'node ' + path;
}
}
}
});
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-jslint');
grunt.loadNpmTasks('grunt-mocha-test');
grunt.loadNpmTasks('grunt-browserify');
grunt.loadNpmTasks('grunt-shell');
grunt.registerTask(
'default',
[
'jslint',
'mochaTest',
'browserify',
'uglify',
'shell:prepareBrowserTests'
]
);
grunt.registerTask('benchmark', [
'shell:benchmark:benchmarks/comparisons/define.js',
'shell:benchmark:benchmarks/comparisons/instance.js'
]);
};