uncommenting build files creates jekyll error

This commit is contained in:
Brittany Chiang
2017-03-14 23:59:14 -04:00
parent 6cf1122d8e
commit 4c9f0e8914
5 changed files with 70 additions and 68 deletions

View File

@@ -1,11 +1,11 @@
const fontsPath = 'fonts/**/*';
const destPath = '_site/fonts';
// const fontsPath = 'fonts/**/*';
// const destPath = '_site/fonts';
module.exports = gulp => {
// module.exports = gulp => {
gulp.task('fonts', () => {
return gulp.src( fontsPath )
.pipe(gulp.dest( destPath ));
});
// gulp.task('fonts', () => {
// return gulp.src( fontsPath )
// .pipe(gulp.dest( destPath ));
// });
}
// }

View File

@@ -1,14 +1,14 @@
const imagemin = require('gulp-imagemin');
// const imagemin = require('gulp-imagemin');
const imgPath = 'img/**/*.+(png|jpg|gif|svg)';
const destPath = '_site/img';
// const imgPath = 'img/**/*.+(png|jpg|gif|svg)';
// const destPath = '_site/img';
module.exports = gulp => {
// module.exports = gulp => {
gulp.task('images', () => {
return gulp.src( imgPath )
.pipe(imagemin())
.pipe(gulp.dest( destPath ));
});
// gulp.task('images', () => {
// return gulp.src( imgPath )
// .pipe(imagemin())
// .pipe(gulp.dest( destPath ));
// });
}
// }

View File

@@ -1,21 +1,21 @@
const sass = require('gulp-sass');
const prefix = require('gulp-autoprefixer');
const cleanCSS = require('gulp-clean-css');
// const sass = require('gulp-sass');
// const prefix = require('gulp-autoprefixer');
// const cleanCSS = require('gulp-clean-css');
const scssPath = '_scss/*.scss';
const destPath = '_site/css';
// const scssPath = '_scss/*.scss';
// const destPath = '_site/css';
module.exports = gulp => {
// module.exports = gulp => {
gulp.task('sass', () => {
return gulp.src( scssPath )
.pipe(sass({
includePaths: ['scss'],
outputStyle: 'expanded'
}))
.pipe(prefix(['last 15 versions', '> 1%', 'ie 8', 'ie 7'], {cascade: true}))
.pipe(cleanCSS({compatibility: 'ie8'}))
.pipe(gulp.dest( destPath ))
.pipe(gulp.dest('css'));
});
}
// gulp.task('sass', () => {
// return gulp.src( scssPath )
// .pipe(sass({
// includePaths: ['scss'],
// outputStyle: 'expanded'
// }))
// .pipe(prefix(['last 15 versions', '> 1%', 'ie 8', 'ie 7'], {cascade: true}))
// .pipe(cleanCSS({compatibility: 'ie8'}))
// .pipe(gulp.dest( destPath ))
// .pipe(gulp.dest('css'));
// });
// }

View File

@@ -1,21 +1,21 @@
const jshint = require('gulp-jshint');
const babel = require('gulp-babel');
const uglify = require('gulp-uglify');
// const jshint = require('gulp-jshint');
// const babel = require('gulp-babel');
// const uglify = require('gulp-uglify');
const jsPath = '_scripts/*.js';
const destPath = '_site/js';
// const jsPath = '_scripts/*.js';
// const destPath = '_site/js';
module.exports = gulp => {
// module.exports = gulp => {
gulp.task('scripts', () => {
return gulp.src( jsPath )
.pipe(jshint())
.pipe(babel({
presets: ['es2015']
}))
.pipe(uglify())
.pipe(gulp.dest( destPath ))
.pipe(gulp.dest( 'js' ));
});
// gulp.task('scripts', () => {
// return gulp.src( jsPath )
// .pipe(jshint())
// .pipe(babel({
// presets: ['es2015']
// }))
// .pipe(uglify())
// .pipe(gulp.dest( destPath ))
// .pipe(gulp.dest( 'js' ));
// });
}
// }