forked from ringcaptcha/widget
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgruntfile.coffee
132 lines (119 loc) · 3.14 KB
/
gruntfile.coffee
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
###
Define tasks.
###
module.exports = (grunt) ->
pkg = grunt.file.readJSON('package.json');
config = grunt.file.readJSON('config.json')
aws = grunt.file.readJSON('aws.json')
grunt.initConfig
###
Build banner.
###
banner: "/* Widget #{pkg.version} */\n"
###
Compile stylesheets.
###
less:
options:
paths: ['node_modules']
compress: true
compile:
files:
'build/resources/css/widget.css': 'resources/less/widget.less'
###
Compile widget.
###
browserify:
compile:
options:
extension: ['.coffee', '.js']
transform: ['coffeeify', 'debowerify', 'deglobalify', 'jstify']
external: ['jquery']
ignore: ['underscore']
standalone: 'RingCaptcha'
postBundleCB: (err, src, next) ->
if (src)
src = '(function (jQuery) { ' + src + ' })(window.jQuery);'
next(err, src)
files:
'build/bundle.js': ['index.coffee']
###
Uglify compiled code.
###
uglify:
options:
banner: "<%= banner %>"
preserveComments: false
build:
files:
'build/bundle.min.js': ['build/bundle.js']
###
Copy.
###
copy:
resources:
files: [
{ expand: true, src: ['resources/fonts/**'], dest: 'build' }
{ expand: true, src: ['resources/images/**'], dest: 'build' }
]
translations:
files: [
{ expand: true, src: ['resources/locales/**/*.json'], dest: 'build' }
]
options:
process: (content, srcpath) ->
jsonminify = require('jsonminify')
return jsonminify(content)
###
Watch changes.
###
watch:
options:
atBegin: true
coffee:
files: ['index.coffee', 'src/**/*.coffee']
tasks: ['browserify:compile', 'uglify:build']
resources:
files: ['resources/!{scss,views}/**']
tasks: ['copy:translations', 'copy:resources']
###
Upload build files to S3
###
s3:
options:
key: aws.key
secret: aws.secret
region: aws.region
access: 'public-read'
headers:
'Cache-Control': 'max-age=3600'
production:
options:
bucket: aws.s3.bucket
sync: [
src: 'build/**'
dest: aws.s3.path
rel: 'build'
options:
verify: true
]
###
Invalidate CDN cache
###
invalidate_cloudfront:
options:
key: aws.key,
secret: aws.secret,
distribution: aws.distribution
production:
files: [
{ expand: true, cwd: './build/', src: ['**/*'], filter: 'isFile', dest: aws.s3.path }
]
grunt.loadNpmTasks 'grunt-browserify'
grunt.loadNpmTasks 'grunt-contrib-copy'
grunt.loadNpmTasks 'grunt-contrib-uglify'
grunt.loadNpmTasks 'grunt-contrib-watch'
grunt.loadNpmTasks 'grunt-contrib-less'
grunt.loadNpmTasks 'grunt-s3'
grunt.loadNpmTasks 'grunt-invalidate-cloudfront'
grunt.registerTask 'build', ['browserify:compile', 'uglify:build', 'copy', 'less:compile']