piano/grunt/contrib-copy.js

13 lines
312 B
JavaScript
Raw Normal View History

2014-11-08 17:52:36 +00:00
/*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')
});
};