This repository has been archived by the owner on Sep 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
gruntfile.js
130 lines (122 loc) · 3.52 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
/*global module:true*/
(function() {
"use strict";
var pkg;
module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
// Metadata.
pkg: pkg = grunt.file.readJSON("package.json"),
banner: "/*! <%= pkg.name %> - v<%= pkg.version %> - " +
"<%= grunt.template.today('yyyy-mm-dd') %>\n" +
"<%= pkg.homepage ? ' * ' + pkg.homepage + '\\n' : '' %>" +
" * Copyright (c) <%= grunt.template.today('yyyy') %> https://github.com/scottjehl/picturefill/blob/master/Authors.txt;" +
" Licensed <%= pkg.license %>\n */\n",
// Task configuration.
clean: {
files: [ "dist" ]
},
copy: {
plugins: {
files: [
{
expand: true,
cwd: "src/plugins/",
src: [ "**", "!gecko-picture/*" ],
dest: "dist/plugins/",
filter: "isFile"
}
],
},
},
concat: {
dist: {
options: {
banner: "<%= banner %>",
stripBanners: true
},
src: [ "src/plugins/gecko-picture/pf.gecko-picture.js", "src/picturefill.js" ],
dest: "dist/picturefill.js"
}
},
uglify: {
options: {
banner: "<%= banner %>"
},
dist: {
files: [
{
expand: true,
cwd: "dist/",
src: [ "**/*.js", "!*.min.js", "!**/*.min.js" ],
dest: "dist/",
ext: ".min.js",
extDot: "last"
}
]
}
},
qunit: {
files: [ "tests/*.html" ]
},
jshint: {
all: {
options: {
jshintrc: true
},
src: [ "Gruntfile.js", "src/**/*.js" ]
}
},
jscs: {
all: {
src: "<%= jshint.all.src %>"
}
},
"gh-pages": {
options: {
base: "."
},
src: [ "**/*", "!node_modules/**/*", "!test/**/*", "!src/**/*" ]
},
release: {
options: {
commitMessage: "Picturefill <%= version %>",
tagMessage: "Picturefill <%= version %>",
afterRelease: [ "gh-pages" ]
}
},
watch: {
gruntfile: {
files: [ "Gruntfile.js", "src/*.js", "src/includes/*.js", "tests/*.js" ],
tasks: [ "default" ],
options: {
spawn: false
}
}
}
});
// because the compress plugin is insane
grunt.task.registerTask( "compress", "compress the dist folder", function() {
var childProc = require("child_process");
var done = this.async();
childProc.exec( "zip -r dist-" + pkg.version + ".zip dist", function() {
done();
});
});
// These plugins provide necessary tasks.
grunt.loadNpmTasks("grunt-contrib-clean");
grunt.loadNpmTasks("grunt-contrib-copy");
grunt.loadNpmTasks("grunt-contrib-concat");
grunt.loadNpmTasks("grunt-contrib-jshint");
grunt.loadNpmTasks("grunt-contrib-qunit");
grunt.loadNpmTasks("grunt-contrib-uglify");
grunt.loadNpmTasks("grunt-contrib-watch");
grunt.loadNpmTasks("grunt-jscs-checker");
grunt.loadNpmTasks("grunt-gh-pages");
grunt.loadNpmTasks("grunt-release");
// Default task.
grunt.registerTask("default", [ "jscs", "test", "clean", "concat", "copy", "uglify" ]);
grunt.registerTask("test", [ "jscs", "jshint", "qunit" ]);
grunt.registerTask("publish", [ "gh-pages" ]);
};
})();