1
0
Fork 0
foxyproxy-firefox-extension/Gruntfile.js
Daniel Baumann 916e3d5336
Adding upstream version 7.5.1+dfsg.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-02-07 01:18:43 +01:00

18 lines
No EOL
416 B
JavaScript

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