Adding upstream version 7.5.1+dfsg.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
caee58990d
commit
916e3d5336
89 changed files with 16891 additions and 0 deletions
18
Gruntfile.js
Normal file
18
Gruntfile.js
Normal file
|
@ -0,0 +1,18 @@
|
|||
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']);
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue