forked from jquery/learn.jquery.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
grunt.js
51 lines (45 loc) · 1.02 KB
/
grunt.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
var config = require("./config.json");
module.exports = function( grunt ) {
"use strict";
grunt.loadNpmTasks( "grunt-clean" );
grunt.loadNpmTasks( "grunt-html" );
grunt.loadNpmTasks( "grunt-wordpress" );
grunt.loadNpmTasks( "grunt-jquery-content" );
grunt.loadNpmTasks( "grunt-check-modules" );
grunt.initConfig({
clean: {
wordpress: "dist/"
},
htmllint: {
resources: "resources/*.html"
},
jshint: {
options: {
undef: true,
node: true
}
},
lint: {
grunt: "grunt.js"
},
watch: {
pages: {
files: "page/**",
tasks: "deploy"
}
},
"build-pages": {
all: grunt.file.expandFiles( "page/**" )
},
"build-resources": {
all: grunt.file.expandFiles( "resources/**/*" )
},
wordpress: grunt.utils._.extend({
dir: "dist/wordpress",
order: "order.yml"
}, grunt.file.readJSON( "config.json" ) )
});
grunt.registerTask( "default", "wordpress-deploy" );
grunt.registerTask( "build-wordpress", "check-modules clean lint build-pages build-resources");
grunt.registerTask( "deploy", "wordpress-deploy" );
};