forked from patrickmichalina/angular-material-sidemenu
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgulpfile.babel.js
More file actions
executable file
·159 lines (141 loc) · 3.68 KB
/
gulpfile.babel.js
File metadata and controls
executable file
·159 lines (141 loc) · 3.68 KB
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
import gulp from 'gulp';
import gulpWebpack from 'webpack-stream';
import importCss from 'gulp-import-css';
import sourcemaps from 'gulp-sourcemaps';
import rename from 'gulp-rename';
import changed from 'gulp-changed-in-place';
import eslint from 'gulp-eslint';
import watch from 'gulp-watch';
import webpack from 'webpack';
import path from 'path';
import del from 'del';
import _browsersync from 'browser-sync';
let joinPath = (...paths) => path.normalize(path.join.apply(this, paths));
let srcFolder = 'src';
let destFolder = 'dest';
let gulpFolder = 'gulp';
let demoFolder = 'demos';
let demoFiles = '**/*.{html,css,js}';
let mainFile = 'angular-material-sidemenu';
let mainScript = mainFile + '.js';
let mainStylesheet = mainFile + '.css';
let config = {
joinPath,
srcFolder,
destFolder,
demoFolder,
demoFiles,
gulpScripts: [
joinPath(gulpFolder, '**/*.js'),
'gulpfile.babel.js'
],
srcScripts: [
joinPath(srcFolder, '**/*.js'),
'index.js'
],
srcStylesheets: joinPath(srcFolder, '**/*.scss'),
mainFile,
mainScript,
mainStylesheet
};
let watchConfig = {
verbose: true
};
let browserSync = _browsersync.create();
gulp.task('browserSync', () => {
return browserSync.init({
notify: false,
logLevel: 'silent',
port: 9000,
ghostMode: {
clicks: true,
scroll: true,
links: true,
forms: true
},
server: {
baseDir: [
'node_modules',
config.demoFolder,
config.destFolder
]
},
ui: {
port: 9001,
weinre: {
port: 9002
}
},
watchTask: true
});
});
gulp.task('clean', () => {
return del([config.destFolder]);
});
gulp.task('eslint', () => {
return gulp
.src(config.gulpScripts.concat(config.srcScripts))
.pipe(eslint())
.pipe(eslint.format());
});
gulp.task('eslint-all', () => {
return gulp
.src(config.gulpScripts.concat(config.srcScripts))
.pipe(changed())
.pipe(eslint())
.pipe(eslint.format());
});
gulp.task('sass', () => {
return gulp
.src(config.joinPath(config.srcFolder, 'stylesheets', 'main.scss'))
.pipe(sourcemaps.init())
.pipe(
sass({
outputStyle: 'expanded',
indentWidth: 2
})
.on('error', sass.logError)
)
.pipe(importCss())
.pipe(sourcemaps.write())
.pipe(rename(config.mainStylesheet))
.pipe(gulp.dest(config.destFolder))
.pipe(browserSync.stream());
});
gulp.task('webpack', () => {
return gulp.src('./src/main.js')
.pipe(gulpWebpack({
output: {
filename: config.mainScript
},
devtool: 'inline-source-map',
plugins: [
new webpack.optimize.AggressiveMergingPlugin(),
new webpack.optimize.DedupePlugin()
],
module: {
loaders: [
{
loaders: ['ng-annotate', 'babel-loader']
}
]
}
}, webpack, () => 'done'))
.pipe(gulp.dest(config.destFolder));
});
// gulp.task('watch', gulp.series('browserSync'), () => {
// watch(config.srcScripts, watchConfig, () => {
// runSequence('webpack', browserSync.reload);
// });
// watch(config.gulpScripts.concat(config.srcScripts), watchConfig, () => {
// runSequence('eslint');
// });
// watch(config.srcStylesheets, watchConfig, () => {
// runSequence('sass');
// });
// watch(config.joinPath(config.demoFolder, config.demoFiles), watchConfig, () => {
// browserSync.reload();
// });
// });
gulp.task('default', gulp.series('clean', 'webpack', 'eslint-all', 'sass')); //, 'watch');
// });