2016-03-23 23:53:37 +03:00
|
|
|
const del = require('del');
|
|
|
|
const gulp = require('gulp');
|
|
|
|
const merge = require('merge-stream');
|
|
|
|
const rename = require('gulp-rename');
|
|
|
|
const replace = require('gulp-replace');
|
|
|
|
const zip = require('gulp-zip');
|
2018-05-21 17:22:42 +03:00
|
|
|
const pages = require('gh-pages');
|
2018-06-25 18:52:45 +03:00
|
|
|
const sync = require('browser-sync').create();
|
2016-03-23 23:53:37 +03:00
|
|
|
|
|
|
|
gulp.task('prepare', () => {
|
|
|
|
|
|
|
|
const shower = gulp.src([
|
|
|
|
'**',
|
2016-08-12 22:18:44 +03:00
|
|
|
'!docs{,/**}',
|
2016-03-23 23:53:37 +03:00
|
|
|
'!node_modules{,/**}',
|
2016-04-03 20:47:04 +03:00
|
|
|
'!prepared{,/**}',
|
2016-03-23 23:53:37 +03:00
|
|
|
'!CONTRIBUTING.md',
|
|
|
|
'!LICENSE.md',
|
|
|
|
'!README.md',
|
|
|
|
'!gulpfile.js',
|
2018-08-24 11:39:41 +03:00
|
|
|
'!netlify.toml',
|
2017-07-20 15:57:54 +03:00
|
|
|
'!package.json',
|
|
|
|
'!package-lock.json'
|
2016-03-23 23:53:37 +03:00
|
|
|
])
|
|
|
|
.pipe(replace(
|
2016-08-12 22:18:32 +03:00
|
|
|
/(<link rel="stylesheet" href=")(node_modules\/shower-)([^\/]*)\/(.*\.css">)/g,
|
|
|
|
'$1shower/themes/$3/$4', { skipBinary: true }
|
2016-03-23 23:53:37 +03:00
|
|
|
))
|
|
|
|
.pipe(replace(
|
|
|
|
/(<script src=")(node_modules\/shower-core\/)(shower.min.js"><\/script>)/g,
|
|
|
|
'$1shower/$3', { skipBinary: true }
|
|
|
|
));
|
|
|
|
|
|
|
|
const core = gulp.src([
|
|
|
|
'shower.min.js'
|
|
|
|
], {
|
|
|
|
cwd: 'node_modules/shower-core'
|
|
|
|
})
|
|
|
|
.pipe(rename( (path) => {
|
|
|
|
path.dirname = 'shower/' + path.dirname;
|
|
|
|
}));
|
|
|
|
|
|
|
|
const material = gulp.src([
|
|
|
|
'**', '!package.json'
|
|
|
|
], {
|
|
|
|
cwd: 'node_modules/shower-material'
|
|
|
|
})
|
|
|
|
.pipe(rename( (path) => {
|
|
|
|
path.dirname = 'shower/themes/material/' + path.dirname;
|
|
|
|
}))
|
|
|
|
|
|
|
|
const ribbon = gulp.src([
|
|
|
|
'**', '!package.json'
|
|
|
|
], {
|
|
|
|
cwd: 'node_modules/shower-ribbon'
|
|
|
|
})
|
|
|
|
.pipe(rename( (path) => {
|
|
|
|
path.dirname = 'shower/themes/ribbon/' + path.dirname;
|
|
|
|
}));
|
|
|
|
|
|
|
|
const themes = merge(material, ribbon)
|
|
|
|
.pipe(replace(
|
|
|
|
/(<script src=")(\/shower-core\/)(shower.min.js"><\/script>)/,
|
|
|
|
'$1../../$3', { skipBinary: true }
|
|
|
|
));
|
|
|
|
|
|
|
|
return merge(shower, core, themes)
|
|
|
|
.pipe(gulp.dest('prepared'));
|
|
|
|
|
|
|
|
});
|
|
|
|
|
2018-06-16 01:54:30 +03:00
|
|
|
gulp.task('clean', () => {
|
|
|
|
return del('prepared/**');
|
|
|
|
});
|
|
|
|
|
2016-03-23 23:53:37 +03:00
|
|
|
gulp.task('zip', () => {
|
|
|
|
return gulp.src('prepared/**')
|
|
|
|
.pipe(zip('archive.zip'))
|
|
|
|
.pipe(gulp.dest('.'));
|
|
|
|
});
|
|
|
|
|
|
|
|
gulp.task('upload', () => {
|
2018-05-21 17:22:42 +03:00
|
|
|
return pages.publish('prepared')
|
2016-03-23 23:53:37 +03:00
|
|
|
});
|
|
|
|
|
2018-06-16 01:54:30 +03:00
|
|
|
gulp.task('archive', gulp.series(
|
|
|
|
'prepare',
|
|
|
|
'zip',
|
|
|
|
'clean'
|
|
|
|
));
|
2016-03-23 23:53:37 +03:00
|
|
|
|
2018-06-16 01:54:30 +03:00
|
|
|
gulp.task('publish', gulp.series(
|
|
|
|
'prepare',
|
|
|
|
'upload',
|
|
|
|
'clean'
|
|
|
|
));
|
2016-03-23 23:53:37 +03:00
|
|
|
|
2017-07-19 20:48:56 +03:00
|
|
|
gulp.task('serve', () => {
|
2018-06-25 18:52:45 +03:00
|
|
|
sync.init({
|
2017-07-19 20:48:56 +03:00
|
|
|
ui: false,
|
|
|
|
notify: false,
|
|
|
|
port: 3000,
|
|
|
|
server: {
|
|
|
|
baseDir: '.'
|
|
|
|
}
|
|
|
|
});
|
|
|
|
gulp.watch('index.html').on('change', () => {
|
2018-06-25 18:52:45 +03:00
|
|
|
sync.reload();
|
2017-07-19 20:48:56 +03:00
|
|
|
});
|
|
|
|
});
|