piano/grunt/contrib-copy.js

13 lines
312 B
JavaScript

/*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')
});
};