forked from html5blank/html5blank
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
200 lines (173 loc) · 4.81 KB
/
gulpfile.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
/* jshint node: true */
/* global $: true */
"use strict";
var gulp = require( "gulp" ),
/** @type {Object} Loader of Gulp plugins from `package.json` */
$ = require( "gulp-load-plugins" )(),
/** @type {Array} JS source files to concatenate and uglify */
uglifySrc = [
/** Modernizr */
"src/js/lib/modernizr.js",
/** Conditionizr */
"src/js/lib/conditionizr-4.3.0.min.js",
/** jQuery */
"node_modules/jquery/dist/jquery.js",
/** Page scripts */
"src/js/scripts.js"
],
/** @type {Object of Array} CSS source files to concatenate and minify */
cssminSrc = {
development: [
/** The banner of `style.css` */
"src/css/banner.css",
/** Theme style */
"src/css/style.css"
],
production: [
/** The banner of `style.css` */
"src/css/banner.css",
/** Normalize */
"node_modules/normalize.css/normalize.css",
/** Theme style */
"src/css/style.css"
]
},
/** @type {String} Used inside task for set the mode to 'development' or 'production' */
env = (function() {
/** @type {String} Default value of env */
var env = "development";
/** Test if there was a different value from CLI to env
Example: gulp styles --env=production
When ES6 will be default. `find` will replace `some` */
process.argv.some(function( key ) {
var matches = key.match( /^\-{2}env\=([A-Za-z]+)$/ );
if ( matches && matches.length === 2 ) {
env = matches[1];
return true;
}
});
return env;
} ());
/** Clean */
gulp.task( "clean", require( "del" ).bind( null, [ ".tmp", "dist" ] ) );
/** Copy */
gulp.task( "copy", function() {
return gulp.src([
"src/*.{php,png,css}",
"src/modules/*.php",
"src/img/**/*.{jpg,png,svg,gif,webp,ico}",
"src/fonts/*.{woff,woff2,ttf,otf,eot,svg}",
"src/languages/*.{po,mo,pot}"
], {
base: "src"
})
.pipe( gulp.dest( "dist" ) );
});
/** CSS Preprocessors */
gulp.task( "sass", function () {
return gulp.src( "src/css/sass/style.scss" )
.pipe( $.sourcemaps.init() )
.pipe( $.sass() )
.pipe( $.sourcemaps.write( "." ) )
.on( "error", function( e ) {
console.error( e );
})
.pipe( gulp.dest( "src/css" ) );
});
/** STYLES */
gulp.task( "styles", [ "sass" ], function() {
console.log( "`styles` task run in `" + env + "` environment" );
var stream = gulp.src( cssminSrc[ env ] )
.pipe( $.concat( "style.css" ))
.pipe( $.autoprefixer( "last 2 version" ) );
if ( env === "production" ) {
stream = stream.pipe( $.csso() );
}
return stream.on( "error", function( e ) {
console.error( e );
})
.pipe( gulp.dest( "src" ) );
});
/** JSHint */
gulp.task( "jshint", function () {
/** Test all `js` files exclude those in the `lib` folder */
return gulp.src( "src/js/{!(lib)/*.js,*.js}" )
.pipe( $.jshint() )
.pipe( $.jshint.reporter( "jshint-stylish" ) )
.pipe( $.jshint.reporter( "fail" ) );
});
/** Templates */
gulp.task( "template", function() {
console.log( "`template` task run in `" + env + "` environment" );
var is_debug = ( env === "production" ? "false" : "true" );
return gulp.src( "src/dev-templates/is-debug.php" )
.pipe( $.template({ is_debug: is_debug }) )
.pipe( gulp.dest( "src/modules" ) );
});
/** Modernizr **/
gulp.task( "modernizr", function() {
var modernizr = require( "modernizr" ),
config = require( "./node_modules/modernizr/lib/config-all"),
fs = require( "fs" );
modernizr.build(config, function(code) {
fs.writeFile("./src/js/lib/modernizr.js", code);
});
});
/** Uglify */
gulp.task( "uglify", function() {
return gulp.src( uglifySrc )
.pipe( $.concat( "scripts.min.js" ) )
.pipe( $.uglify() )
.pipe( gulp.dest( "dist/js" ) );
});
/** jQuery **/
gulp.task("jquery", function() {
return gulp.src("node_modules/jquery/dist/jquery.js")
.pipe( $.sourcemaps.init() )
.pipe( $.sourcemaps.write( "." ) )
.pipe( gulp.dest( "src/js/lib" ) );
});
gulp.task("normalize", function() {
return gulp.src("node_modules/normalize.css/normalize.css")
.pipe( gulp.dest( "src/css/lib" ) );
});
/** `env` to 'production' */
gulp.task( "envProduction", function() {
env = "production";
});
/** Livereload */
gulp.task( "watch", [ "template", "styles", "jshint", "modernizr", "jquery", "normalize" ], function() {
var server = $.livereload;
server.listen();
/** Watch for livereoad */
gulp.watch([
"src/js/**/*.js",
"src/*.php",
"src/*.css"
]).on( "change", function( file ) {
console.log( file.path );
server.changed( file.path );
});
/** Watch for autoprefix */
gulp.watch( [
"src/css/*.css",
"src/css/sass/**/*.scss"
], [ "styles" ] );
/** Watch for JSHint */
gulp.watch( "src/js/{!(lib)/*.js,*.js}", ["jshint"] );
});
/** Build */
gulp.task( "build", [
"envProduction",
"clean",
"template",
"styles",
"modernizr",
"jshint",
"copy",
"uglify"
], function () {
console.log("Build is finished");
});
/** Gulp default task */
gulp.task( "default", ["watch"] );