Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
unsettledgames committed Dec 9, 2021
2 parents 55f514b + fd064eb commit dfa9810
Show file tree
Hide file tree
Showing 3 changed files with 488 additions and 2,186 deletions.
5 changes: 4 additions & 1 deletion build.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const path = require('path');
const gulp = require('gulp');
const include = require('gulp-include');
const handlebars = require('gulp-hb');
const sass = require('gulp-sass');
const sass = require('gulp-sass')(require('sass'));
const rename = require('gulp-rename');

//const hb_svg = require('handlebars-helper-svg');
Expand Down Expand Up @@ -63,6 +63,9 @@ function compile_page(){


// empty the build folder, or create it
try {
fs.rmdirSync(BUILDDIR, { recursive: true });
fs.mkdirSync(BUILDDIR);
} catch (err) {console.log('failed to find build folder, but it\'s probably fine')}

gulp.parallel(copy_images, copy_logs, render_js, render_css, compile_page)();
Loading

0 comments on commit dfa9810

Please sign in to comment.