We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4866182 commit a59c896Copy full SHA for a59c896
build/tasks/build.js
@@ -1,5 +1,7 @@
1
module.exports = function( grunt ) {
2
3
+var path = require( "path" );
4
+
5
grunt.registerMultiTask( "copy", "Copy files to destination folder and replace @VERSION with pkg.version", function() {
6
function replaceVersion( source ) {
7
return source.replace( /@VERSION/g, grunt.config( "pkg.version" ) );
grunt.js
@@ -293,7 +293,7 @@ grunt.initConfig({
293
// TODO remove items from this list once rewritten
294
return !( /(mouse|datepicker|draggable|droppable|resizable|selectable|sortable)\.js$/ ).test( file );
295
}),
296
- grunt: "grunt.js",
+ grunt: [ "grunt.js", "build/tasks/*.js" ],
297
tests: "tests/unit/**/*.js"
298
},
299
csslint: {
0 commit comments