|
/*jshint node:true */
|
|
|
|
'use strict';
|
|
|
|
module.exports = function (grunt) {
|
|
grunt.loadNpmTasks('grunt-contrib-copy');
|
|
|
|
grunt.config('copy.copy-files', {
|
|
expand: true,
|
|
dest: 'build/<%= paths.resources[grunt.task.current.args[0]] %>/app',
|
|
src: grunt.config.get('files')
|
|
});
|
|
}; |