mirror of
https://github.com/TryGhost/Ruby.git
synced 2024-10-29 20:38:33 +02:00
61 lines
2.1 KiB
JavaScript
61 lines
2.1 KiB
JavaScript
const gulp = require('gulp');
|
|
const {src, dest, series} = gulp;
|
|
const touch = require('gulp-touch-fd');
|
|
const less = require('gulp-less');
|
|
const autoprefixer = require('gulp-autoprefixer');
|
|
const uglify = require('gulp-uglify');
|
|
const concat = require('gulp-concat');
|
|
const exec = require('child_process').exec;
|
|
|
|
const theme = 'ruby';
|
|
const version = '1.2.1';
|
|
const root = '/Users/sodbileg/Developer/ghost-themes';
|
|
const final = '/Users/sodbileg/Dropbox/IVEEL/Ruby';
|
|
|
|
function css() {
|
|
return src('assets/less/screen.less')
|
|
.pipe(less())
|
|
.pipe(autoprefixer({
|
|
browsers: ['>0.25%'],
|
|
cascade: false,
|
|
}))
|
|
.pipe(dest('assets/css'))
|
|
.pipe(touch());
|
|
}
|
|
|
|
function js() {
|
|
return src([
|
|
'assets/js/vendor/*',
|
|
'assets/js/main.js'])
|
|
.pipe(uglify())
|
|
.pipe(concat('main.min.js'))
|
|
.pipe(dest('assets/js'))
|
|
.pipe(touch());
|
|
}
|
|
|
|
function watch() {
|
|
gulp.watch('assets/less/**/*', css);
|
|
gulp.watch('assets/js/main.js', js);
|
|
}
|
|
|
|
function deploy(done) {
|
|
exec('rsync -avz --delete --rsync-path="sudo rsync" --exclude "partials/config.hbs" --exclude "partials/widgets" --exclude "node_modules" --exclude "gulpfile.js" --exclude "package-lock.json" --exclude ".git" --exclude ".gitignore" --exclude ".DS_Store" ' + root + '/content/themes/' + theme + '/ aws:/home/ubuntu/ghost-themes/' + theme + '/content/themes/' + theme + '/', function (err, stdout, stderr) {
|
|
console.log(stdout);
|
|
});
|
|
done();
|
|
}
|
|
|
|
function prepare(done) {
|
|
exec(
|
|
'rsync -avz --delete --exclude "assets/js/vendor" --exclude "assets/js/main.js" --exclude "assets/less" --exclude ".git" --exclude ".gitignore" --exclude "node_modules" --exclude "gulpfile.js" --exclude "package-lock.json" ' + root + '/content/themes/' + theme + '/ ' + final + '/' + theme + '/ && ' +
|
|
'cd ' + final + ' && ' +
|
|
'find ./' + theme + ' -type f -exec chmod 664 {} \\; && ' +
|
|
'zip -r -X ' + theme + '-' + version + '.zip ' + theme + ' -x "*.DS_Store" -x "*.gitignore" -x "*.travis.yml" -x "*.tx" -x "*.git" -x "*.svn" && ' +
|
|
'rm -r ' + theme
|
|
);
|
|
done();
|
|
}
|
|
|
|
exports.default = series(css, js, watch);
|
|
exports.deploy = deploy;
|
|
exports.prepare = prepare; |