mirror of
https://github.com/lospec/pixel-editor.git
synced 2023-08-10 21:12:51 +03:00
89 lines
2.4 KiB
JavaScript
89 lines
2.4 KiB
JavaScript
var fs = require('fs-extra');
|
|
var hbs = require('handlebars');
|
|
var glob = require("glob");
|
|
var sass = require("sass");
|
|
var path = require("path");
|
|
var gulp = require('gulp');
|
|
var include = require('gulp-include');
|
|
|
|
const BUILDDIR = './build';
|
|
|
|
console.log(process.env.HOST?true:false)
|
|
|
|
console.log('Building Procedural Pixel Art Generator');
|
|
|
|
hbs.registerHelper('svg', require('handlebars-helper-svg'));
|
|
require('hbs-register-helpers')(hbs,'./_ext/modules/hbs/helpers/**/*.js');
|
|
require('hbs-register-partials')(hbs,'./_ext/modules/hbs/_*.hbs');
|
|
|
|
//empty the build folder, or create it
|
|
fs.emptyDirSync(BUILDDIR);
|
|
|
|
|
|
//copy images
|
|
fs.copySync('./images','./build/procedural-pixel-art-generator');
|
|
|
|
//render js
|
|
gulp.src('./js/*.js')
|
|
.pipe(include({includePaths: [
|
|
'_ext/scripts',
|
|
'js'
|
|
]}))
|
|
.on('error', console.log)
|
|
.pipe(gulp.dest("build/procedural-pixel-art-generator"));
|
|
|
|
|
|
//render css
|
|
var sassFiles = glob.sync('css/*.scss');
|
|
|
|
sassFiles.forEach((s) => {
|
|
|
|
var f = sass.renderSync({file: s, outFile: 'test.css', includePaths: ['css', '_ext/sass', '_ext/modules/css']});
|
|
|
|
console.log('compiling:',path.basename(f.stats.entry))
|
|
fs.writeFileSync('build/procedural-pixel-art-generator/'+path.basename(f.stats.entry,'scss')+'css', f.css);
|
|
});
|
|
|
|
|
|
|
|
//compile content
|
|
var contentTemplate = hbs.compile(fs.readFileSync('./views/procedural-pixel-art-generator.hbs',{encoding: 'utf8'}));
|
|
var content = contentTemplate();
|
|
|
|
//compile page
|
|
var pageTemplate = hbs.compile(fs.readFileSync('./_ext/modules/hbs/layout-contribute.hbs',{encoding: 'utf8'}));
|
|
var page = pageTemplate({
|
|
projectSlug: 'procedural-pixel-art-generator',
|
|
title: 'Lospec Procedural Pixel Art Generator',
|
|
body: content,
|
|
css: ['https://lospec.com/stylesheets/style.css','procedural-pixel-art-generator/procedural-pixel-art-generator.css'],
|
|
js: ['procedural-pixel-art-generator/procedural-pixel-art-generator.js'],
|
|
});
|
|
|
|
//save output
|
|
fs.writeFileSync('./build/index.htm',page);
|
|
|
|
|
|
//server
|
|
const express = require('express');
|
|
const app = express();
|
|
|
|
|
|
//ROUTE - index.htm
|
|
app.get('/', (req, res) => res.sendFile(path.join(__dirname+'/build/index.htm')));
|
|
|
|
//ROUTE - other files
|
|
app.use(express.static(path.join(__dirname, 'build')));
|
|
|
|
//start server
|
|
app.listen(3000, () => {
|
|
console.log('\nTemp server started at http://localhost:3000!');
|
|
console.log('press ctrl+c to stop ');
|
|
|
|
var opn = require('opn');
|
|
|
|
// opens the url in the default browser
|
|
opn('http://localhost:3000');
|
|
|
|
});
|