pixel-editor/build.js

68 lines
1.8 KiB
JavaScript
Raw Normal View History

const fs = require('fs');
const path = require('path');
const gulp = require('gulp');
const include = require('gulp-include');
const hb = require('gulp-hb');
const sass = require('gulp-sass');
const rename = require('gulp-rename');
const hb_svg = require('handlebars-helper-svg');
const BUILDDIR = process.argv[2] || './build/';
2021-07-06 18:49:14 +03:00
2019-03-27 02:20:54 +03:00
2019-03-28 05:19:15 +03:00
console.log('Building Pixel Editor');
2019-03-27 02:20:54 +03:00
function copy_images(){
2021-04-27 14:00:43 +03:00
// Icons
2021-07-06 18:49:14 +03:00
gulp.src('./images/*.png').pipe(gulp.dest(BUILDDIR));
2021-04-27 14:00:43 +03:00
// Splash images
2021-07-06 18:49:14 +03:00
gulp.src('./images/Splash images/*.png').pipe(gulp.dest(BUILDDIR));
// Logs images
2021-07-06 18:49:14 +03:00
gulp.src('./images/Logs/*.gif').pipe(gulp.dest(BUILDDIR));
2021-04-27 14:00:43 +03:00
}
function copy_logs() {
2021-07-06 18:49:14 +03:00
gulp.src('logs/*.html').pipe(gulp.dest(BUILDDIR));
}
function render_js(){
gulp.src('./js/*.js')
.pipe(include({includePaths: [
'_ext/scripts',
'js',
'!js/_*.js',
]}))
.on('error', console.log)
2021-07-06 18:49:14 +03:00
.pipe(gulp.dest(BUILDDIR));
}
function render_css(){
gulp.src('css/*.scss')
.pipe(sass({includePaths: ['css', '_ext/sass', '_ext/modules/css']}))
2021-07-06 18:49:14 +03:00
.pipe(gulp.dest(BUILDDIR));
}
function compile_page(){
gulp.src(path.join('./views/index.hbs'))
.pipe(hb({encoding: 'utf8'})
.partials('./_ext/modules/_*.hbs')
.helpers({ svg: hb_svg })
.helpers('./_ext/modules/hbs/helpers/**/*.js')
.data({
projectSlug: 'pixel-editor',
title: 'Lospec Pixel Editor',
layout: false,
}))
.pipe(rename('index.htm'))
.pipe(gulp.dest(BUILDDIR));
}
2019-03-27 02:20:54 +03:00
// empty the build folder, or create it
fs.rmdirSync(BUILDDIR, { recursive: true });
fs.mkdirSync(BUILDDIR);
2021-04-27 14:00:43 +03:00
gulp.parallel(copy_images, copy_logs, render_js, render_css, compile_page)();