-
Notifications
You must be signed in to change notification settings - Fork 294
/
Gruntfile.js
191 lines (187 loc) · 5.4 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
module.exports = function(grunt) {
// Project configuration
var banner = '/**\n * Featherlight - ultra slim jQuery lightbox\n * Version <%= pkg.version %> - <%= pkg.homepage %>\n *\n * Copyright <%= grunt.template.today("yyyy") %>, <%= pkg.author.name %> (<%= pkg.author.url %>)\n * MIT Licensed.\n**/';
var gallery = '/**\n * Featherlight Gallery – an extension for the ultra slim jQuery lightbox\n * Version <%= pkg.version %> - <%= pkg.homepage %>\n *\n * Copyright <%= grunt.template.today("yyyy") %>, <%= pkg.author.name %> (<%= pkg.author.url %>)\n * MIT Licensed.\n**/';
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
uglify: {
featherlight: {
options: {
banner: banner+'\n'
},
src: 'src/<%= pkg.name %>.js',
dest: 'release/<%= pkg.name %>.min.js'
},
gallery: {
options: {
banner: gallery
},
src: 'src/<%= pkg.name %>.gallery.js',
dest: 'release/<%= pkg.name %>.gallery.min.js'
}
},
jshint: {
options: {
laxbreak: true,
curly: true,
eqeqeq: true,
eqnull: true,
browser: true,
reporterOutput: "",
globals: {
jQuery: true,
Hammer: true,
el: true
},
},
uses_defaults: ['src/**/*.js']
},
cssmin: {
options: {
keepSpecialComments: 1
},
featherlight: {
options: {
banner: banner
},
src: 'src/<%= pkg.name %>.css',
dest: 'release/<%= pkg.name %>.min.css'
},
gallery: {
options: {
banner: gallery
},
src: 'src/<%= pkg.name %>.gallery.css',
dest: 'release/<%= pkg.name %>.gallery.min.css'
}
},
jquerymanifest: {
options: {
source: grunt.file.readJSON('package.json'),
overrides: {
"name": "<%= pkg.name %>",
"version": "<%= pkg.version %>",
"title": "<%= pkg.title %>",
"description": "<%= pkg.description %>",
"dependencies": {
"jquery": ">=1.7"
},
"devDependencies": null,
"main": null
}
}
},
replace: {
src: {
src: ['./README.md','./src/*.*','bower.json'],
overwrite: true,
replacements: [
{
from: /Copyright\s[0-9]{4}/g,
to: 'Copyright <%= grunt.template.today("yyyy") %>'
},
{
from: /\*\sVersion\s[0-9]+[.]{1}[0-9]+[.]{1}[0-9]+/g,
to: '* Version <%= pkg.version %>'
},
{
from: /Current\sRelease\s[0-9]+[.]{1}[0-9]+[.]{1}[0-9]+/g,
to: 'Current Release <%= pkg.version %>'
},
{
from: /archive\/[0-9]+[.]{1}[0-9]+[.]{1}[0-9]+/g,
to: 'archive/<%= pkg.version %>'
},
{
from: /noelboss\/featherlight\/[0-9]+[.]{1}[0-9]+[.]{1}[0-9]+/g,
to: 'noelboss/featherlight/<%= pkg.version %>'
},
{
from: /"version": "[0-9]+[.]{1}[0-9]+[.]{1}[0-9]+"/g,
to: '"version": "<%= pkg.version %>"'
},
{
from: /\([0-9]+[.]{1}[0-9]+[.]{1}[0-9]+\)/g,
to: '(<%= pkg.version %>)'
}
]
},
min: {
src: ['src/index.html', 'src/gallery.html'],
dest: './',
replacements: [
{
from: '="featherlight.gallery.',
to: '="release/featherlight.gallery.min.'
},
{
from: '="featherlight.js',
to: '="release/featherlight.min.js'
},
{
from: '="featherlight.css',
to: '="release/featherlight.min.css'
},
{
from: '="../assets',
to: '="assets'
},
{
from: 'master.zip',
to: '<%= pkg.version %>.zip'
}
]
},
changelog: {
src: ['./CHANGELOG.md'],
overwrite: true,
replacements: [
{
from: 'Master\n-----------------------------------',
to: 'Master\n-----------------------------------\n\n\n<%= pkg.version %> - <%= grunt.template.today("yyyy-mm-dd") %>\n-----------------------------------'
}
]
},
},
bump: {
options: {
files: [
'package.json'
],
updateConfigs: ['pkg'],
commit: true,
commitMessage: 'Release Version %VERSION%',
commitFiles: ['-a'], // '-a' for all files
createTag: true,
tagName: '%VERSION%',
tagMessage: 'Released Version %VERSION%',
push: false
/*pushTo: 'upstream',*/
/*gitDescribeOptions: '--tags --always --abbrev=1 --dirty=-d' // options to use with '$ git describe'*/
},
},
mocha: {
test: {
src: ['test/featherlight*.html'],
},
options: {
run: true,
},
},
});
// Load the plugin that provides the "uglify" task.
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-text-replace');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-cssmin');
grunt.loadNpmTasks('grunt-jquerymanifest');
grunt.loadNpmTasks('grunt-mocha');
grunt.loadNpmTasks('grunt-bump');
// Default task(s).
grunt.registerTask('default', ['jshint', 'replace:src', 'replace:min', 'uglify', 'cssmin', 'jquerymanifest']);
grunt.registerTask('test-release', ['bump-only:patch', 'jshint', 'replace', 'uglify', 'cssmin', 'jquerymanifest']);
grunt.registerTask('patch', ['bump-only:patch', 'jshint', 'replace:src', 'replace:min', 'uglify', 'cssmin', 'jquerymanifest', 'bump-commit', 'replace:changelog',]);
grunt.registerTask('minor', ['bump-only:minor', 'jshint', 'replace:src', 'replace:min', 'uglify', 'cssmin', 'jquerymanifest', 'bump-commit', 'replace:changelog',]);
grunt.registerTask('major', ['bump-only:major', 'jshint', 'replace:src', 'replace:min', 'uglify', 'cssmin', 'jquerymanifest', 'bump-commit', 'replace:changelog',]);
grunt.registerTask('test', ['jshint', 'mocha']);
};