forked from cmv/cmv-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGruntfile.js
More file actions
134 lines (132 loc) · 3.61 KB
/
Gruntfile.js
File metadata and controls
134 lines (132 loc) · 3.61 KB
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
tag: {
banner: '/* <%= pkg.name %>\n' +
' * version <%= pkg.version %>\n' +
' * Project: <%= pkg.homepage %>\n' +
' */\n'
},
copy: {
build: {
cwd: 'viewer',
src: ['**'],
dest: 'dist/viewer',
expand: true
}
},
clean: {
build: {
src: ['dist']
}
},
autoprefixer: {
build: {
expand: true,
cwd: 'dist/viewer',
src: ['**/*.css', '!**/dbootstrap/**'],
dest: 'dist/viewer'
}
},
cssmin: {
build: {
expand: true,
cwd: 'dist/viewer',
src: ['**/*.css', '!**/dbootstrap/**'],
dest: 'dist/viewer'
}
},
jshint: {
build: {
src: ['viewer/**/*.js', '!**/dbootstrap/**', '!**/TOC.js'],
options: {
jshintrc: '.jshintrc',
reporter: require('jshint-stylish')
}
}
},
uglify: {
build: {
files: [{
expand: true,
cwd: 'dist/viewer',
src: ['**/*.js'],
dest: 'dist/viewer',
ext: '.js'
}],
options: {
banner: '<%= tag.banner %>',
sourceMap: true,
sourceMapIncludeSources: true,
compress: {
drop_console: true
}
}
}
},
watch: {
dev: {
files: ['viewer/**'],
tasks: ['jshint']
},
build: {
files: ['dist/viewer/**'],
tasks: ['jshint']
}
},
connect: {
dev: {
options: {
port: 3000,
base: 'viewer',
hostname: '*'
}
},
build: {
options: {
port: 3001,
base: 'dist/viewer',
hostname: '*'
}
}
},
open: {
dev_browser: {
path: 'http://localhost:3000/index.html'
},
build_browser: {
path: 'http://localhost:3001/index.html'
}
},
compress: {
build: {
options: {
archive: 'dist/viewer.zip'
},
files: [{
expand: true,
cwd: 'dist/viewer',
src: ['**']
}]
}
}
});
// load the tasks
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-autoprefixer');
grunt.loadNpmTasks('grunt-contrib-cssmin');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-connect');
grunt.loadNpmTasks('grunt-newer');
grunt.loadNpmTasks('grunt-open');
grunt.loadNpmTasks('grunt-contrib-compress');
// define the tasks
grunt.registerTask('default', 'Watches the project for changes, automatically builds them and runs a web server and opens default browser to preview.', ['jshint', 'connect:dev', 'open:dev_browser', 'watch:dev']);
grunt.registerTask('build', 'Compiles all of the assets and copies the files to the build directory.', ['clean', 'copy', 'scripts', 'stylesheets', 'compress:build']);
grunt.registerTask('build-view', 'Compiles all of the assets and copies the files to the build directory starts a web server and opens browser to preview app.', ['clean', 'copy', 'scripts', 'stylesheets', 'compress:build', 'connect:build', 'open:build_browser', 'watch:build']);
grunt.registerTask('scripts', 'Compiles the JavaScript files.', ['jshint', 'uglify']);
grunt.registerTask('stylesheets', 'Auto prefixes css and compiles the stylesheets.', ['autoprefixer', 'cssmin']);
};