piano/grunt/curl.js

12 lines
255 B
JavaScript

/*jshint node:true */
'use strict';
module.exports = function (grunt) {
grunt.loadNpmTasks('grunt-curl');
grunt.config('curl.fetch-asset', {
src: '<%= asset %>',
dest: 'build/<%= grunt.task.current.args[0] %>.zip'
});
};