forked from cloudspokes/arena-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gruntfile.js
81 lines (79 loc) · 3.03 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
'use strict';
module.exports = function (grunt) {
grunt.initConfig({
clean : {
build: ['build/'],
release: ['release/']
},
replace : {
build: {
options: {
patterns: [
{ match : 'AUTH0_CLIENT_ID', replacement: process.env.AUTH0_CLIENT_ID },
{ match : 'CALLBACK_URL', replacement: process.env.CALLBACK_URL },
{ match : 'API_DOMAIN', replacement: process.env.API_DOMAIN },
]
},
files : [
{ src: 'app/js/config.def.js', dest: 'app/js/config.js' }
]
}
},
browserify: {
build: {
// A single entry point for our app
src: 'app/js/app.js',
// Compile to a single file to add a script tag for in your HTML
dest: 'build/js/bundle.js',
},
},
cssmin: {
build: {
src: ['app/css/bootstrap.min.css', 'app/css/app.css', 'app/css/local.css'],
// Compile to a single file to add a script tag for in your HTML
dest: 'build/css/bundle.css',
},
},
uglify: {
release: {
src: 'build/js/bundle.js',
dest: 'release/js/bundle.js',
},
},
copy: {
build: {
// This copies all the html and images into the build/ folder. css and js were done already.
expand: true,
cwd: 'app/',
src: ['**/*.html', 'img/**', 'fonts/**', 'data/**', 'robots.txt'],
dest: 'build/',
},
release: {
// This copies all the html, css and images into the release/ folder. js was done already.
expand: true,
cwd: 'build/',
src: ['**/*.html', 'img/**', 'css/**', 'fonts/**', 'data/**', 'robots.txt'],
dest: 'release/',
},
},
watch: {
dev: {
files: ['app/**', '!app/js/config.js'],
tasks: ['build']
}
},
});
// Load the npm installed tasks
grunt.loadNpmTasks('grunt-browserify');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-contrib-cssmin');
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-replace');
grunt.loadNpmTasks('grunt-contrib-watch');
// The default tasks to run when you type: grunt
grunt.registerTask('default', ['clean:build', 'replace:build', 'browserify:build', 'cssmin:build', 'copy:build']);
grunt.registerTask('build', ['clean:build', 'replace:build', 'browserify:build', 'cssmin:build', 'copy:build']);
//release tasks work out of build directory - build must be run first!
grunt.registerTask('release', ['clean:release', 'uglify:release', 'copy:release']);
};