MastodonLatoAdmin/node_modules/grunt-zip/docs/Gruntfile.js
2018-11-09 14:48:56 +01:00

14 lines
310 B
JavaScript

module.exports = function (grunt) {
// Define a zip
grunt.initConfig({
zip: {
'location/to/zip/files.zip': ['file/to/zip.js', 'another/file.css']
},
unzip: {
'location/to/extract/files/': 'file/to/extract.zip'
}
});
// Load in `grunt-zip`
grunt.loadTasks('../tasks');
};