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
117 lines (115 loc) · 3.03 KB
/
Gruntfile.js
File metadata and controls
117 lines (115 loc) · 3.03 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
module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
tag: {
banner: '/* <%= pkg.name %>\n' +
' * @version <%= pkg.version %>\n' +
' * @author <%= pkg.author %>\n' +
' * Project: <%= pkg.homepage %>\n' +
' * Copyright <%= pkg.year %>. <%= pkg.license %> licensed.\n' +
' */\n'
},
copy: {
build: {
cwd: 'viewer',
src: ['**'],
dest: 'dist',
expand: true
}
},
clean: {
build: {
src: ['dist']
}
},
autoprefixer: {
build: {
expand: true,
cwd: 'dist',
src: ['**/*.css', '!**/dbootstrap/**'],
dest: 'dist'
}
},
cssmin: {
build: {
expand: true,
cwd: 'dist',
src: ['**/*.css', '!**/dbootstrap/**'],
dest: 'dist'
}
},
jshint: {
build: {
src: ['viewer/**/*.js', '!**/dbootstrap/**', '!**/TOC.js'],
options: {
jshintrc: '.jshintrc',
reporter: require('jshint-stylish')
}
}
},
uglify: {
build: {
files: [{
expand: true,
cwd: 'viewer',
src: ['**/*.js'],
dest: 'dist',
ext: '.js'
}],
options: {
banner: '<%= tag.banner %>',
sourceMap: true,
sourceMapName: function(filePath) {
return filePath + '.map';
}
}
}
},
watch: {
dev: {
files: ['viewer/**'],
tasks: ['newer:jshint']
}
},
connect: {
dev: {
options: {
port: 3000,
base: 'viewer',
hostname: '*'
}
},
build: {
options: {
port: 3001,
base: 'dist',
hostname: '*'
}
}
},
open: {
dev_browser: {
path: 'http://localhost:3000/index.html'
},
build_browser: {
path: 'http://localhost:3001/index.html'
}
}
});
// 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');
// define the tasks
grunt.registerTask('default', 'Watches the project for changes, automatically builds them and runs a server.', ['connect:dev', 'open:dev_browser', 'watch']);
grunt.registerTask('build', 'Compiles all of the assets and copies the files to the build directory.', ['clean', 'copy', 'stylesheets', 'scripts', 'connect:build', 'open:build_browser', 'watch']);
grunt.registerTask('scripts', 'Compiles the JavaScript files.', ['newer:jshint', 'newer:uglify']);
grunt.registerTask('stylesheets', 'Compiles the stylesheets.', ['newer:autoprefixer', 'newer:cssmin']);
};