-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathGruntfile.js
58 lines (54 loc) · 1.93 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
module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON("package.json"),
uglify: {
options: {
banner: "/*! <%= pkg.name %> | <%= pkg.author %> | <%= pkg.license %> */\n",
sourceMap: false
},
build: {
files: [
{
src: [
'src/modules/controllers.js',
'src/modules/tv-admin-controllers.js',
'src/modules/project-config-controllers.js',
'src/modules/member-card-controllers.js',
'src/modules/orders-controllers.js',
'src/modules/directives.js',
'src/modules/services.js',
'src/modules/filters.js',
'src/modules/qcode-controller.js',
'src/modules/report-controller.js',
'src/modules/ticket-controller.js',
'plugins/angular-locale_zh-cn.js',
'plugins/ramda.min.js'
],
dest: "dist/js/app.min.js"
}
]
}
},
cssmin: {
combine: {
files: {
'dist/style/app.min.css': ['src/style/app.css','src/style/ionic.parts.css']
}
}
},
watch: {
js: {
files: "src/*/*.js",
tasks: ["uglify"]
},
css: {
files: "src/style/*.css",
tasks: ["cssmin"]
}
}
})
grunt.loadNpmTasks("grunt-contrib-cssmin")
grunt.loadNpmTasks("grunt-contrib-uglify")
grunt.loadNpmTasks("grunt-contrib-watch")
grunt.registerTask("default", ["uglify", "cssmin", "watch"])
}