2017-06-10 20:35:01 +00:00
|
|
|
const gulp = require('gulp');
|
2017-08-30 02:16:03 +00:00
|
|
|
const fs = require('fs');
|
2017-06-24 23:04:10 +00:00
|
|
|
const util = require('gulp-util');
|
2017-08-30 02:16:03 +00:00
|
|
|
const merge = require('merge-stream');
|
2017-06-10 20:35:01 +00:00
|
|
|
const exec = require('child_process').exec;
|
2017-08-30 02:16:03 +00:00
|
|
|
const sass = require('gulp-sass');
|
|
|
|
const postcss = require('gulp-postcss');
|
|
|
|
const cssnano = require('cssnano');
|
|
|
|
const browserSync = require('browser-sync').create();
|
|
|
|
const concat = require('gulp-concat');
|
|
|
|
const imageResize = require('gulp-image-resize');
|
2017-02-26 21:24:53 +00:00
|
|
|
|
2017-08-30 02:16:03 +00:00
|
|
|
gulp.task('scripts:games', function (callback) {
|
2018-02-28 02:50:13 +00:00
|
|
|
exec(`cd ./scripts/games/ && yarn install && node app.js`, function (err, stdout, stderr) {
|
2017-02-26 21:24:53 +00:00
|
|
|
console.log(stdout);
|
|
|
|
console.log(stderr);
|
2017-08-30 02:16:03 +00:00
|
|
|
callback(err);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
gulp.task('scripts:twitter', function (callback) {
|
2018-02-28 02:50:13 +00:00
|
|
|
exec(`cd ./scripts/twitter/ && yarn install && node app.js`, function (err, stdout, stderr) {
|
2017-08-30 02:16:03 +00:00
|
|
|
console.log(stdout);
|
|
|
|
console.log(stderr);
|
|
|
|
callback(err);
|
2017-02-26 21:24:53 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2017-08-30 02:16:03 +00:00
|
|
|
gulp.task('scripts:wiki', function (callback) {
|
2018-02-28 02:50:13 +00:00
|
|
|
exec(`cd ./scripts/wiki/ && yarn install && node app.js`, function (err, stdout, stderr) {
|
2017-08-30 02:16:03 +00:00
|
|
|
console.log(stdout);
|
|
|
|
console.log(stderr);
|
|
|
|
callback(err);
|
|
|
|
});
|
|
|
|
});
|
2017-06-24 14:08:37 +00:00
|
|
|
|
2017-08-30 02:16:03 +00:00
|
|
|
gulp.task('assets:images', function() {
|
|
|
|
var baseImages = gulp.src(`build/images/*`, {base: './'})
|
|
|
|
.pipe(gulp.dest('./'));
|
|
|
|
var jumbotronImages = gulp.src(`build/images/jumbotron/*`, {base: './'})
|
2017-06-10 20:35:01 +00:00
|
|
|
.pipe(imageResize({ width: 786, height: 471, crop: true }))
|
2017-08-30 02:16:03 +00:00
|
|
|
.pipe(gulp.dest('./'));
|
|
|
|
var bannerImages = gulp.src(`build/images/banners/*`, {base: './'})
|
2017-06-10 20:35:01 +00:00
|
|
|
.pipe(imageResize({ width: 824, height: 306, crop: false }))
|
2017-08-30 02:16:03 +00:00
|
|
|
.pipe(gulp.dest('./'));
|
|
|
|
var boxartImages = gulp.src(`build/images/game/boxart/*`, {base: './'})
|
2017-06-10 20:35:01 +00:00
|
|
|
.pipe(imageResize({ width: 328, height: 300, crop: true }))
|
2017-08-30 02:16:03 +00:00
|
|
|
.pipe(gulp.dest('./'));
|
|
|
|
var iconImages = gulp.src(`build/images/game/icons/*`, {base: './'})
|
2017-06-10 20:35:01 +00:00
|
|
|
.pipe(imageResize({ width: 48, height: 48, crop: true }))
|
2017-08-30 02:16:03 +00:00
|
|
|
.pipe(gulp.dest('./'));
|
|
|
|
var screenshotImages = gulp.src(`build/images/screenshots/*`)
|
2017-06-24 19:34:51 +00:00
|
|
|
.pipe(imageResize({ width: 400, height: 240, crop: false }))
|
2017-08-30 02:16:03 +00:00
|
|
|
.pipe(gulp.dest(`build/images/screenshots/thumbs`));
|
2018-12-19 01:37:54 +00:00
|
|
|
|
2017-08-30 02:16:03 +00:00
|
|
|
return merge(baseImages, jumbotronImages, bannerImages, boxartImages, iconImages, screenshotImages);
|
|
|
|
});
|
|
|
|
|
|
|
|
gulp.task('assets:js', function() {
|
|
|
|
return gulp.src(['src/js/**/*.js'])
|
|
|
|
.pipe(concat('script.js'))
|
|
|
|
.pipe(gulp.dest('build/js'));
|
|
|
|
});
|
|
|
|
|
|
|
|
gulp.task('assets:fonts', function(){
|
|
|
|
return gulp.src('./node_modules/bootstrap-sass/assets/fonts/**/*')
|
|
|
|
.pipe(gulp.dest('build/fonts/'))
|
2017-07-27 08:33:38 +00:00
|
|
|
});
|
|
|
|
|
2017-08-30 02:16:03 +00:00
|
|
|
gulp.task('assets:scss', function () {
|
|
|
|
var postCssOptions = [ cssnano ];
|
|
|
|
return gulp.src('src/scss/style.scss')
|
|
|
|
.pipe(sass().on('error', sass.logError))
|
|
|
|
.pipe(postcss(postCssOptions))
|
|
|
|
.pipe(gulp.dest('build/css'))
|
|
|
|
.pipe(browserSync.stream());
|
|
|
|
});
|
|
|
|
|
|
|
|
gulp.task('hugo', function (cb) {
|
|
|
|
exec('hugo -s ./site/ -d ../build/ -v', function (err, stdout, stderr) {
|
|
|
|
console.log(stdout);
|
|
|
|
console.log(stderr);
|
|
|
|
cb(err);
|
2017-06-24 23:04:10 +00:00
|
|
|
});
|
2017-08-30 02:16:03 +00:00
|
|
|
});
|
|
|
|
|
2018-12-19 01:37:54 +00:00
|
|
|
gulp.task('final:serve', function(done) {
|
2017-08-30 02:16:03 +00:00
|
|
|
browserSync.init({
|
|
|
|
open: false,
|
|
|
|
server: {
|
|
|
|
baseDir: 'build'
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2018-12-19 01:03:06 +00:00
|
|
|
gulp.watch('src/js/**/*', gulp.series('assets:js'));
|
|
|
|
gulp.watch('src/scss/**/*', gulp.series('assets:scss'));
|
|
|
|
gulp.watch('site/**/*.html', gulp.series('hugo'));
|
|
|
|
gulp.watch('site/**/*.md', gulp.series('hugo'));
|
2017-06-25 02:14:34 +00:00
|
|
|
|
2019-03-17 06:29:25 +00:00
|
|
|
gulp.watch('build/**/*').on('change', function(x) {
|
2018-12-19 01:03:06 +00:00
|
|
|
browserSync.reload(x);
|
|
|
|
});
|
2018-12-19 01:37:54 +00:00
|
|
|
|
|
|
|
done()
|
2017-06-24 23:04:10 +00:00
|
|
|
});
|
|
|
|
|
2018-12-19 01:37:54 +00:00
|
|
|
gulp.task('final:publish', function(done) {
|
2017-08-30 02:16:03 +00:00
|
|
|
fs.writeFileSync(`build/CNAME`, `${cname}`);
|
|
|
|
fs.writeFileSync(`build/robots.txt`, `Sitemap: https://${cname}/sitemap.xml\n\nUser-agent: *`);
|
2018-12-19 01:37:54 +00:00
|
|
|
done()
|
2017-02-26 21:24:53 +00:00
|
|
|
});
|
2018-12-19 01:03:06 +00:00
|
|
|
|
|
|
|
const cname = 'citra-emu.org';
|
|
|
|
var finalCommand = null;
|
|
|
|
|
|
|
|
if (util.env.production) {
|
|
|
|
process.env.HUGO_ENV = 'PRD';
|
|
|
|
process.env.HUGO_BASEURL = `https://${cname}`
|
|
|
|
finalCommand = 'final:publish';
|
|
|
|
} else {
|
|
|
|
process.env.HUGO_ENV = 'DEV';
|
|
|
|
process.env.HUGO_BASEURL = 'http://localhost:3000';
|
|
|
|
finalCommand = 'final:serve';
|
|
|
|
}
|
|
|
|
|
|
|
|
util.log(`process.env.HUGO_ENV = '${process.env.HUGO_ENV}'`);
|
|
|
|
util.log(`process.env.HUGO_BASEURL = '${process.env.HUGO_BASEURL}'`);
|
|
|
|
|
|
|
|
gulp.task('default', gulp.series(gulp.parallel('assets:js', 'assets:fonts', 'assets:scss'), 'hugo', 'assets:images', finalCommand))
|
|
|
|
gulp.task('all', gulp.series(gulp.parallel('scripts:games', 'scripts:twitter', 'scripts:wiki'), gulp.parallel('assets:js', 'assets:fonts', 'assets:scss'), 'hugo', 'assets:images', finalCommand))
|
|
|
|
gulp.task('content', gulp.series('hugo', finalCommand));
|