-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathGruntfile.js
202 lines (185 loc) · 4.16 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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
/*jshint node:true */
module.exports = function(grunt) {
'use strict';
// Override environment based line endings enforced by Grunt
grunt.util.linefeed = '\n';
// Grunt configuration
grunt.initConfig({
pkg: grunt.file.readJSON('meta.json'),
meta: {
banner: '/*!\n' +
' * <%= pkg.name %> <%= pkg.version %> - <%= grunt.template.today("dS mmm yyyy") %>\n' +
' * <%= pkg.repository.homepage %>\n' +
' *\n' +
' * Licensed under the <%= pkg.licenses[0].type %> license.\n' +
' * <%= pkg.licenses[0].url %>\n' +
' */\n',
bannerLight: '/*! <%= pkg.name %> <%= pkg.version %>' +
' - <%= grunt.template.today("dS mmm yyyy") %> | <%= pkg.repository.homepage %> */\n',
},
// JSHint the code.
jshint: {
options: {
jshintrc: true,
},
all: ['index.js'],
},
// Clean folders.
clean: {
build: ['build/**'],
tmp: ['tmp/**'],
dist: ['dist/**']
},
// Concatenate files.
concat: {
development: {
options: {
banner: '<%= meta.banner %>'
},
src: 'tmp/<%= pkg.name %>.js',
dest: 'tmp/<%= pkg.name %>.js',
},
style: {
options: {
banner: '<%= meta.bannerLight %>'
},
src: 'tmp/<%= pkg.name %>.css',
dest: 'tmp/<%= pkg.name %>.css',
},
},
// Minify files.
uglify: {
production: {
options: {
banner: '<%= meta.bannerLight %>',
report: 'gzip',
},
src: 'tmp/<%= pkg.name %>.js',
dest: 'tmp/<%= pkg.name %>.min.js'
},
},
// Copy files.
copy: {
dist: {
expand: true,
cwd: 'tmp',
src: ['*.js', '*.css'],
dest: 'dist/',
},
},
// Build components.
componentbuild: {
test: {
options: {
dev: true,
sourceUrls: true,
},
src: '.',
dest: 'build',
},
production: {
options: {
name: '<%= pkg.name %>',
standalone: 'Tooltip',
},
src: '.',
dest: 'tmp',
},
development: {
options: {
name: '<%= pkg.name %>',
standalone: 'Tooltip',
sourceUrls: true,
},
src: '.',
dest: 'tmp',
},
},
// Create zipfiles.
compress: {
options: {
level: 9,
pretty: true,
},
standalone: {
options: {
archive: 'dist/tooltip.zip',
},
expand: true,
cwd: 'tmp',
src: ['*'],
},
},
// Watch for changes and run tasks.
watch: {
component: {
files: ['index.js', '*.css'],
tasks: ['componentbuild:test'],
options: {
spawn: false,
livereload: true,
},
},
test: {
files: ['test/*.js', 'test/*.css'],
options: {
spawn: false,
livereload: true,
},
},
},
// Bump up fields in JSON files.
bumpup: {
options: {
updateProps: {
pkg: 'meta.json',
},
},
files: ['meta.json', 'component.json'],
},
// Commit changes and tag the latest commit with a version from JSON file.
tagrelease: '<%= pkg.version %>'
});
// These plugins provide necessary tasks.
grunt.loadNpmTasks('grunt-contrib-compress');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-component-build');
grunt.loadNpmTasks('grunt-tagrelease');
grunt.loadNpmTasks('grunt-bumpup');
// Dev task.
grunt.registerTask('dev', function () {
grunt.task.run('componentbuild:test');
});
// Build task.
grunt.registerTask('dist', function () {
grunt.task.run('jshint');
grunt.task.run('clean:tmp');
grunt.task.run('clean:dist');
// Production
grunt.task.run('componentbuild:production');
grunt.task.run('uglify:production');
// Development
grunt.task.run('componentbuild:development');
grunt.task.run('concat:development');
// Distribution
grunt.task.run('concat:style');
grunt.task.run('copy:dist');
grunt.task.run('compress');
// Cleanup
grunt.task.run('clean:tmp');
});
// Release task.
grunt.registerTask('release', function (type) {
type = type ? type : 'patch';
grunt.task.run('jshint');
grunt.task.run('bumpup:' + type);
grunt.task.run('tagrelease');
});
// Default task.
grunt.registerTask('default', ['jshint']);
};