mirror of
https://github.com/pcottle/learnGitBranching.git
synced 2025-08-31 23:40:27 +02:00
with grunt
This commit is contained in:
parent
7a838f89f7
commit
9ee1490aa3
1 changed files with 26 additions and 1 deletions
27
grunt.js
27
grunt.js
|
@ -1,10 +1,32 @@
|
||||||
/*global module:false*/
|
/*global module:false*/
|
||||||
module.exports = function(grunt) {
|
module.exports = function(grunt) {
|
||||||
|
|
||||||
|
// eventually have sound...?
|
||||||
|
grunt.registerTask('compliment', function() {
|
||||||
|
grunt.log.writeln('You are awesome!');
|
||||||
|
});
|
||||||
|
|
||||||
grunt.initConfig({
|
grunt.initConfig({
|
||||||
lint: {
|
lint: {
|
||||||
files: ['grunt.js', 'src/*.js']
|
files: ['grunt.js', 'src/*.js']
|
||||||
},
|
},
|
||||||
|
/*
|
||||||
|
jasmine_node: {
|
||||||
|
specNameMatcher: "./spec", // load only specs containing specNameMatcher
|
||||||
|
projectRoot: ".",
|
||||||
|
requirejs: false,
|
||||||
|
forceExit: true,
|
||||||
|
jUnit: {
|
||||||
|
report: false,
|
||||||
|
savePath : "./build/reports/jasmine/",
|
||||||
|
useDotNotation: true,
|
||||||
|
consolidate: true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
watch: {
|
||||||
|
files: '<config:lint.files>',
|
||||||
|
tasks: 'lint'
|
||||||
|
},*/
|
||||||
jshint: {
|
jshint: {
|
||||||
options: {
|
options: {
|
||||||
curly: true,
|
curly: true,
|
||||||
|
@ -33,6 +55,9 @@ module.exports = function(grunt) {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
//grunt.loadNpmTasks('grunt-jasmine-node');
|
||||||
|
|
||||||
// Default task.
|
// Default task.
|
||||||
grunt.registerTask('default', 'lint');
|
grunt.registerTask('default', 'lint jasmine_node');
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue