mirror of
https://github.com/lospec/pixel-editor.git
synced 2023-08-10 21:12:51 +03:00
6ec80cf410
this should hopefully make it so the css js files are properly loaded when on the apps site. I also made it so the build file only compiles pixel-editor.js since it was compiling everything in the folder for no reason
78 lines
2.2 KiB
JavaScript
78 lines
2.2 KiB
JavaScript
const fs = require('fs');
|
|
const path = require('path');
|
|
const gulp = require('gulp');
|
|
const include = require('gulp-include');
|
|
const handlebars = require('gulp-hb');
|
|
const sass = require('gulp-sass')(require('sass'));
|
|
const rename = require('gulp-rename');
|
|
|
|
//const hb_svg = require('handlebars-helper-svg');
|
|
|
|
const BUILDDIR = process.argv[2] || './build/';
|
|
|
|
|
|
console.log('Building Pixel Editor');
|
|
|
|
|
|
function copy_images(){
|
|
// Icons
|
|
gulp.src('./images/*.png').pipe(gulp.dest(BUILDDIR));
|
|
//favicon
|
|
gulp.src('./images/*.ico').pipe(gulp.dest(BUILDDIR));
|
|
// Splash images
|
|
gulp.src('./images/Splash images/*.png').pipe(gulp.dest(BUILDDIR));
|
|
// Logs gifs
|
|
gulp.src('./images/Logs/*.gif').pipe(gulp.dest(BUILDDIR));
|
|
// Logs pngs
|
|
gulp.src('./images/Logs/*.png').pipe(gulp.dest(BUILDDIR));
|
|
// Tool tutorials
|
|
gulp.src('./images/ToolTutorials/*.gif').pipe(gulp.dest(BUILDDIR));
|
|
}
|
|
|
|
function copy_logs() {
|
|
gulp.src('logs/*.html').pipe(gulp.dest(BUILDDIR));
|
|
}
|
|
|
|
function render_js(){
|
|
gulp.src('./js/pixel-editor.js')
|
|
.pipe(include({includePaths: [
|
|
'js',
|
|
'!js/_*.js',
|
|
]}))
|
|
.on('error', console.log)
|
|
.pipe(gulp.dest(BUILDDIR));
|
|
}
|
|
|
|
|
|
function render_css(){
|
|
gulp.src('css/*.scss')
|
|
.pipe(sass({includePaths: ['css']}))
|
|
.pipe(gulp.dest(BUILDDIR));
|
|
}
|
|
|
|
function compile_page(){
|
|
gulp.src(path.join('./views/index.hbs'))
|
|
.pipe(include({includePaths: ['/svg']}))
|
|
|
|
.pipe(handlebars({encoding: 'utf8', debug: true, bustCache: true})
|
|
.partials('./views/[!index]*.hbs').partials('./views/popups/*.hbs')
|
|
.partials('./views/components/*.hbs')
|
|
.helpers('./helpers/**/*.js')
|
|
.data({
|
|
projectSlug: 'pixel-editor',
|
|
title: 'Lospec Pixel Editor',
|
|
layout: false,
|
|
}))
|
|
.pipe(rename('index.htm'))
|
|
.pipe(gulp.dest(BUILDDIR));
|
|
}
|
|
|
|
|
|
// 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)();
|