-
Notifications
You must be signed in to change notification settings - Fork 23
/
Gruntfile.js
133 lines (121 loc) · 3.24 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
module.exports = function(grunt) {
// Config helpers
var js = '.js'
, distPath = 'dist/'
, distFile = distPath + '<%= pkg.name %>'
, banner = '/*!\n' +
' * <%= pkg.name %>.js v<%= pkg.version %><%= flag %>\n' +
' * <%= pkg.description %>\n' +
' * <%= pkg.homepage %>\n' +
' * <%= pkg.license %> License\n' +
' */\n'
, bannerFlag = function (flag) {
return banner.replace('<%= flag %>', flag);
}
;
// Grunt configuration
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
pjs: grunt.file.readJSON('node_modules/pjs/package.json'),
concat: {
options: {
banner: banner
},
global: {
options: { banner: bannerFlag('-global') },
src: [
'support/global/1.js',
'src/p.js',
'src/easing.js',
'src/<%= pkg.name %>.js',
'support/global/2.js'
],
dest: distFile + js
},
amd: {
options: { banner: bannerFlag('-amd') },
src: [
'support/amd/1.js',
'src/p.js',
'src/easing.js',
'src/<%= pkg.name %>.js',
'support/amd/2.js'
],
dest: distFile + '-amd' + js
},
commonjs: {
options: { banner: bannerFlag('-commonjs') },
src: [
'support/commonjs/1.js',
'src/p.js',
'src/easing.js',
'src/<%= pkg.name %>.js',
'support/commonjs/2.js'
],
dest: distFile + '-cjs' + js
},
umd: {
options: { banner: bannerFlag('-umd') },
src: [
'support/umd/1.js',
'src/p.js',
'src/easing.js',
'src/<%= pkg.name %>.js',
'support/umd/2.js'
],
dest: distFile + '-umd' + js
},
readme: {
options: { banner: '<a style="float:right" href="<%= pkg.homepage %>">[view on github]</a> v<%= pkg.version %>\n\n' },
src: ['README.md'],
dest: 'index.md'
}
},
uglify: {
options: {
banner: bannerFlag('-global'),
footer: '\n',
mangle: true,
report: 'min'
},
global: {
src: distFile + js,
dest: distFile + '-min' + js
}
},
watch: {
scripts: {
files: ['src/*.js'],
tasks: ['clean', 'concat:global']
}
},
markdown: {
all: {
files: ['index.md'],
dest: './',
options: {
gfm: true,
highlight: 'auto'
}
}
}
});
// Load the plugin tasks
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-markdown');
// Default task - trigger global concat and watch for dev.
grunt.registerTask('default', ['clean', 'concat:global', 'watch']);
// Build task - concat and minify all.
grunt.registerTask('build', ['clean', 'concat', 'uglify', 'markdown', 'clean-readme']);
// Clean tasks
grunt.registerTask('clean', 'Clean dist files.', function () {
grunt.file.delete(distPath);
grunt.log.ok();
});
grunt.registerTask('clean-readme', 'Clean readme index file.', function () {
grunt.file.delete('index.md');
grunt.log.ok();
});
};