-
Notifications
You must be signed in to change notification settings - Fork 1
/
gulpfile.js
160 lines (142 loc) · 4.22 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
'use strict';
const path = require('path');
const gulp = require('gulp');
const pkg = require('./package.json');
const $ = require('gulp-load-plugins')();
const gulpSequence = require('gulp-sequence');
const importOnce = require('node-sass-import-once');
const stylemod = require('gulp-style-modules');
const browserSync = require('browser-sync').create();
const gulpif = require('gulp-if');
const combiner = require('stream-combiner2');
const bump = require('gulp-bump');
const argv = require('yargs').argv;
/* Used to transpile JavaScript */
const babel = require('gulp-babel');
const rename = require('gulp-rename');
const sourcemaps = require('gulp-sourcemaps');
const cache = require('gulp-cached');
const clean = require('gulp-clean');
const exec = require('child_process').exec;
const sassOptions = {
importer: importOnce,
importOnce: {
index: true,
bower: true
}
};
gulp.task('clean', function() {
return gulp.src(['.tmp', 'css'], {
read: false
}).pipe($.clean());
});
function handleError(err){
console.log(err.toString());
this.emit('end');
}
function buildCSS(){
return combiner.obj([
$.sass(sassOptions),
$.autoprefixer({
browsers: ['last 2 versions'],
cascade: false,
flexbox: false
}),
gulpif(!argv.debug, $.cssmin())
]).on('error', handleError);
}
gulp.task('sass', function() {
return gulp.src(['./sass/*.scss'])
.pipe(cache('sassing'))
.pipe(buildCSS())
.pipe(stylemod({
moduleId: function(file) {
return path.basename(file.path, path.extname(file.path)) + '-styles';
}
}))
.pipe(gulp.dest('css'))
.pipe(browserSync.stream({match: 'css/*.html'}));
});
// Globbing pattern to find ES6 source files that need to be transpiled
const ES6_SRC = 'src/**/*.es6.js';
// Output directory for transpiled files
const ES5_DEST = './src';
gulp.task('transpile', function() {
return gulp.src(ES6_SRC)
.pipe(cache('transpiling'))
.pipe(sourcemaps.init())
.pipe(babel())
.on('error', function(err) {
console.error(err);
this.emit('end');
})
.pipe(rename(path => {
path.basename = path.basename.replace('.es6', '');
console.log(`Transpiling ${path.basename}.es6.js -> src/${path.basename}.js`)
}))
.pipe(sourcemaps.write('.'))
.pipe(gulp.dest(ES5_DEST));
});
gulp.task('watch', function() {
gulp.watch(ES6_SRC, ['transpile']);
gulp.watch(['sass/*.scss'], ['sass']);
});
gulp.task('serve', function() {
browserSync.init({
port: 8080,
notify: false,
reloadOnRestart: true,
logPrefix: `${pkg.name}`,
https: false,
server: ['./', 'bower_components'],
});
gulp.watch(ES6_SRC, ['transpile']);
gulp.watch(['sass/*.scss'], ['sass']);
gulp.watch(['css/*-styles.html', 'src/*.html', `${ES5_DEST}/*.js`]).on('change', browserSync.reload);
});
gulp.task('bump:patch', function(){
gulp.src(['./bower.json', './package.json'])
.pipe(bump({type:'patch'}))
.pipe(gulp.dest('./'));
});
gulp.task('bump:minor', function(){
gulp.src(['./bower.json', './package.json'])
.pipe(bump({type:'minor'}))
.pipe(gulp.dest('./'));
});
gulp.task('bump:major', function(){
gulp.src(['./bower.json', './package.json'])
.pipe(bump({type:'major'}))
.pipe(gulp.dest('./'));
});
gulp.task('default', function(callback) {
gulpSequence('clean', 'sass', 'transpile')(callback);
});
gulp.task('polymer:cli', function (cb) {
exec('node ./node_modules/polymer-cli/bin/polymer.js build', function (err, stdout, stderr) {
console.log(stdout);
console.log(stderr);
cb(err);
});
});
gulp.task('clean', function(){
gulp.src('dist', {read: false})
.pipe(clean());
})
gulp.task('copy', function(){
var outputDir = './dist';
var index = gulp.src(['index.html']).pipe(gulp.dest(outputDir))
var src = gulp.src(['src/**/*']).pipe(gulp.dest(outputDir + '/src'))
var src = gulp.src(['css/**/*']).pipe(gulp.dest(outputDir + '/css'))
var bc = gulp.src(['bower_components/**/*.*']).pipe(gulp.dest(outputDir + '/bower_components'))
var server = gulp.src(['server/**/*.*']).pipe(gulp.dest(outputDir + '/server'))
var packageFile = gulp.src(['package.json']).pipe(gulp.dest(outputDir));
});
gulp.task('dist', function(cb) {
gulpSequence(
'clean',
'transpile',
'polymer:cli',
'copy'
)(cb);
});