forked from juice-shop/juice-shop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntfile.js
111 lines (101 loc) · 3.55 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
/*jslint node: true */
'use strict';
module.exports = function (grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
uglify: {
js: {
files: {
'app/tmp/juice-shop.min.js': [ 'app/tmp/juice-shop.js' ]
},
options: {
mangle: true
}
},
dist: {
files: {
'app/dist/juice-shop.min.js': [ 'app/tmp/juice-shop.min.js' ]
}
}
},
ngtemplates: {
myApp: {
cwd: 'app',
src: [ 'views/*.html' ],
dest: 'app/tmp/views.js'
}
},
clean: {
temp: {
src: [ 'app/tmp' ]
},
dist: {
src: [ 'app/dist' ]
},
pckg: {
src: [ 'dist' ]
}
},
concat: {
options: {
separator: ';'
},
js: {
src: [ 'app/js/**/*.js' ],
dest: 'app/tmp/juice-shop.js'
},
dist: {
src: [ 'app/tmp/juice-shop.min.js', 'app/tmp/*.js' ],
dest: 'app/tmp/juice-shop.min.js'
}
},
compress: {
pckg: {
options: {
archive: 'dist/<%= pkg.name %>-<%= pkg.version %>.zip'
},
files: [
{
src: [ 'app/index.html',
'app/dist/juice-shop.min.js',
'app/css/*.css',
'app/bower_components/**',
'app/public/**',
'app/private/**',
'server.js',
'app.js',
'models/*.js',
'routes/*.js',
'data/*.js',
'lib/*.js',
'package.json',
'*.md',
'node_modules/sequelize/**',
'node_modules/sqlite3/**',
'node_modules/express/**',
'node_modules/errorhandler/**',
'node_modules/cookie-parser/**',
'node_modules/serve-index/**',
'node_modules/serve-favicon/**',
'node_modules/body-parser/**',
'node_modules/sequelize-restful/**',
'node_modules/morgan/**',
'node_modules/sanitize-html/**',
'node_modules/express-jwt/**',
'node_modules/jsonwebtoken/**',
'node_modules/pdfkit/**',
'node_modules/glob/**'
]
}
]
}
}
});
grunt.loadNpmTasks('grunt-angular-templates');
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-compress');
grunt.registerTask('minify', [ 'clean:dist', 'concat:js', 'uglify:js', 'ngtemplates:myApp', 'concat:dist', 'uglify:dist', 'clean:temp' ]);
grunt.registerTask('package', [ 'clean:pckg', 'minify', 'compress:pckg' ]);
};