Add modified gruntfile.js and tasks
This commit is contained in:
21
tasks/options/copy.js
Normal file
21
tasks/options/copy.js
Normal file
@@ -0,0 +1,21 @@
|
||||
// copy
|
||||
module.exports = function(config) {
|
||||
return {
|
||||
dev: {
|
||||
files: [{
|
||||
expand: true,
|
||||
cwd: './assets',
|
||||
src: ['**/*.!(coffee|jade)'],
|
||||
dest: '.tmp/public'
|
||||
}]
|
||||
},
|
||||
build: {
|
||||
files: [{
|
||||
expand: true,
|
||||
cwd: '.tmp/public',
|
||||
src: ['**/*'],
|
||||
dest: 'www'
|
||||
}]
|
||||
}
|
||||
};
|
||||
};
|
||||
Reference in New Issue
Block a user