2018-10-16 01:45:37 +00:00
|
|
|
/**
|
|
|
|
* `tasks/config/copy`
|
|
|
|
*
|
|
|
|
* ---------------------------------------------------------------
|
|
|
|
*
|
|
|
|
* Copy files and/or folders.
|
|
|
|
*
|
|
|
|
* For more information, see:
|
|
|
|
* https://sailsjs.com/anatomy/tasks/config/copy.js
|
|
|
|
*
|
|
|
|
*/
|
2018-11-20 00:22:41 +00:00
|
|
|
module.exports = function (grunt) {
|
2018-10-16 01:45:37 +00:00
|
|
|
grunt.config.set('copy', {
|
|
|
|
dev: {
|
|
|
|
files: [{
|
|
|
|
expand: true,
|
|
|
|
cwd: './assets',
|
|
|
|
src: ['**/*.!(coffee|less)'],
|
|
|
|
dest: '.tmp/public'
|
|
|
|
}]
|
|
|
|
},
|
|
|
|
build: {
|
|
|
|
files: [{
|
|
|
|
expand: true,
|
|
|
|
cwd: '.tmp/public',
|
|
|
|
src: ['**/*'],
|
|
|
|
dest: 'www'
|
|
|
|
}]
|
|
|
|
},
|
|
|
|
beforeLinkBuildProd: {
|
|
|
|
files: [{
|
|
|
|
expand: true,
|
|
|
|
cwd: '.tmp/public/hash',
|
|
|
|
src: ['**/*'],
|
|
|
|
dest: '.tmp/public/dist'
|
|
|
|
}]
|
2018-11-20 00:22:41 +00:00
|
|
|
}
|
|
|
|
})
|
2018-10-16 01:45:37 +00:00
|
|
|
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
// This Grunt plugin is part of the default asset pipeline in Sails,
|
|
|
|
// so it's already been automatically loaded for you at this point.
|
|
|
|
//
|
|
|
|
// Of course, you can always remove this Grunt plugin altogether by
|
|
|
|
// deleting this file. But check this out: you can also use your
|
|
|
|
// _own_ custom version of this Grunt plugin.
|
|
|
|
//
|
|
|
|
// Here's how:
|
|
|
|
//
|
|
|
|
// 1. Install it as a local dependency of your Sails app:
|
|
|
|
// ```
|
|
|
|
// $ npm install grunt-contrib-copy --save-dev --save-exact
|
|
|
|
// ```
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// 2. Then uncomment the following code:
|
|
|
|
//
|
|
|
|
// ```
|
|
|
|
// // Load Grunt plugin from the node_modules/ folder.
|
|
|
|
// grunt.loadNpmTasks('grunt-contrib-copy');
|
|
|
|
// ```
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
2018-11-20 00:22:41 +00:00
|
|
|
}
|