1
0
Fork 0
foxyproxy-firefox-extension/Gruntfile.js

18 lines
416 B
JavaScript
Raw Normal View History

module.exports = function(grunt) {
grunt.initConfig({
compress: {
main: {
options: {
archive: 'target.zip'
},
files: [
{expand: true, cwd: 'src/', src: ['**/*', '!node_modules/**', '!.DS_Store', '!archive/**', '!tests/**'], dest: '/', filter: 'isFile'}
]
}
}
});
grunt.loadNpmTasks('grunt-contrib-compress');
grunt.registerTask('default', ['compress']);
};