forked from cloudspokes/arena-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntfile.js
137 lines (133 loc) · 5.07 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
'use strict';
/*global module, process*/
module.exports = function (grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
s3: {
options: {
accessKeyId: process.env.AWS_ACCESS_KEY_ID,
secretAccessKey: process.env.AWS_ACCESS_KEY,
bucket: process.env.AWS_BUCKET,
access: 'public-read',
gzip: false
},
deploy: {
cwd: 'build/',
src: '**',
dest: 'arena/web-v<%= pkg.version %>/'
}
},
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 : 'WEB_SOCKET_URL', replacement: process.env.WEB_SOCKET_URL },
{ match : 'API_DOMAIN', replacement: process.env.API_DOMAIN },
{ match : 'SSO_KEY', replacement: process.env.SSO_KEY }
]
},
files : [
{ src: 'app/js/config.def.js', dest: 'app/js/config.js' }
]
},
cdn: {
options: {
patterns: [
{ match : 'STATIC_FILE_HOST', replacement: process.env.STATIC_FILE_HOST }
]
},
files: [
{ expand: true, cwd: 'app/', src: '**/*.html', dest: 'build/' }
]
}
},
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',
'app/css/topcoder.css',
'bower_components/codemirror/lib/codemirror.css',
'bower_components/codemirror/addon/fold/foldgutter.css',
'bower_components/fullcalendar/fullcalendar.css',
'thirdparty/jquery.qtip/jquery.qtip.min.css',
'thirdparty/ng-scrollbar/dist/ng-scrollbar.min.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']
}
},
compress: {
deploy: {
options: {
archive: './build.zip',
mode: 'zip'
},
files: [
{ src: './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');
grunt.loadNpmTasks('grunt-aws');
grunt.loadNpmTasks('grunt-contrib-compress');
// The default tasks to run when you type: grunt
grunt.registerTask('default', ['clean:build', 'replace:build', 'browserify:build', 'cssmin:build', 'copy:build', 'replace:cdn']);
grunt.registerTask('build', ['clean:build', 'replace:build', 'browserify:build', 'cssmin:build', 'copy:build', 'replace:cdn']);
//release tasks work out of build directory - build must be run first!
grunt.registerTask('release', ['clean:release', 'uglify:release', 'copy:release']);
grunt.registerTask('heroku', ['build']);
grunt.registerTask('deploy-cdn', ['s3:deploy']);
grunt.registerTask('deploy-compress', ['compress:deploy']);
};