-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathGruntfile.js
33 lines (30 loc) · 911 Bytes
/
Gruntfile.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/* globals module */
module.exports = function (grunt) {
grunt.initConfig({
compress: {
main: {
options: {
archive: 'brackets-print-margin.zip'
},
files: [
{
src: [
'img/**',
'nls/**',
'styles/*',
'templates/*',
'CHANGELOG.md',
'LICENSE',
'main.js',
'package.json',
'README.md',
'strings.js'
]
}
]
}
}
});
grunt.loadNpmTasks('grunt-contrib-compress');
grunt.registerTask('default', ['compress']);
};