1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -215,13 +215,13 @@
require('jest-cli').runCLI(this.options(), process.cwd(), this.async());
});
- grunt.loadNpmTasks('grunt-contrib-jshint');
+ //grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-contrib-clean');
- grunt.loadNpmTasks('grunt-release');
+ //grunt.loadNpmTasks('grunt-release');
grunt.registerTask('lint', 'Lint all source javascript', ['jshint']);
grunt.registerTask('build', 'Build distributed javascript', ['clean', 'bundle', 'copy']);
grunt.registerTask('test', 'Test built javascript', ['jest']);
- grunt.registerTask('default', 'Lint, build and test.', ['lint', 'build', 'stats', 'test']);
+ grunt.registerTask('default', 'build and test.', ['build', 'stats', 'test']);
}
|