Browse Source

Add 'gulp build' task which is not watchify'd

tags/v0.1.3
bertieb 3 years ago
parent
commit
f80ac3dfa0
1 changed files with 44 additions and 17 deletions
  1. +44
    -17
      gulpfile.js

+ 44
- 17
gulpfile.js View File

@@ -18,17 +18,28 @@ var paths = {
ts: ["src/ts/frontend.ts"],
};

var watchedBrowserify = watchify(
browserify({
basedir: ".",
debug: true,
entries: paths.ts,
cache: {},
packageCache: {},
}).plugin(tsify)
);

function bundle() {
var browserifyOpts = {
basedir: ".",
debug: true,
entries: paths.ts,
cache: {},
packageCache: {},
}

var browserifyBuildOpts = browserify(browserifyOpts);
var browserifyWatchOpts = browserify(Object.assign({},browserifyOpts));

function browserifyBuild() {
return browserifyBuildOpts
.plugin("tsify")
.bundle()
.pipe(source("bundle.js"))
.pipe(gulp.dest("dist"));
};

var watchedBrowserify = watchify(browserifyWatchOpts).plugin("tsify");

function watchedBundle() {
return watchedBrowserify
.bundle()
.on("error", fancy_log)
@@ -36,11 +47,18 @@ function bundle() {
.pipe(gulp.dest("dist"));
}

// Non-injecting SASS
gulp.task('sass-noninject', function() {
return gulp.src("src/scss/*.scss")
.pipe(sass())
.pipe(gulp.dest("dist/"))
});

// Compile sass into CSS & auto-inject into browsers
gulp.task('sass', function() {
return gulp.src("src/scss/*.scss")
.pipe(sass())
.pipe(gulp.dest("dist/css"))
.pipe(gulp.dest("dist/"))
.pipe(browserSync.stream());
});

@@ -48,26 +66,35 @@ gulp.task("copy-html", function () {
return gulp.src(paths.pages).pipe(gulp.dest("dist"));
});

/*
* NB: removed pending "do we actually need it" check
*
gulp.task("copy-css", function () {
return gulp.src(paths.css).pipe(gulp.dest("dist/css"));
});
*/

gulp.task("compile-ts", function () {
return tsProject.src().pipe(tsProject()).js.pipe(gulp.dest("dist"));
});

gulp.task("build", gulp.parallel("copy-html", "copy-css", "compile-ts", "sass"));
// Build without watching
gulp.task("build", gulp.series(
gulp.parallel("copy-html", "sass-noninject"),
browserifyBuild
));

gulp.task("build-hs", gulp.parallel("copy-html", "sass"));

// Static Server + compile ts + watch scss/html/css files
//gulp.task('serve', gulp.series("compile-ts", "browserify", 'sass', "copy-html", "copy-css", function() {
gulp.task('serve', gulp.series("build", bundle, function() {
gulp.task('serve', gulp.series("build-hs", watchedBundle, function() {

browserSync.init({
server: "./dist/"
});

gulp.watch("src/scss/*.scss", gulp.series('sass'));
gulp.watch("src/css/*.css").on('change', gulp.series("copy-css"));
//gulp.watch("src/css/*.css").on('change', gulp.series("copy-css"));
gulp.watch("src/html/*.html").on('change', gulp.series("copy-html"));
gulp.watch("dist/*.html").on('change', browserSync.reload);
gulp.watch("dist/*.js").on('change', browserSync.reload);
@@ -75,5 +102,5 @@ gulp.task('serve', gulp.series("build", bundle, function() {


gulp.task('default', gulp.series('serve'));
watchedBrowserify.on("update", bundle);
watchedBrowserify.on("update", watchedBundle);
watchedBrowserify.on("log", fancy_log);

Loading…
Cancel
Save