Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Sumner Rittby committed Nov 27, 2018
2 parents b41168d + cfbcf06 commit d4be201
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .workspace
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
alias sass='gulp sass'
alias update='gulp build-update'
10 changes: 6 additions & 4 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,12 @@ const rename = require('gulp-rename');
const fs = require('fs');

gulp.task('sass', function() {
var css = gulp.src('./archon.scss')
.pipe(sass().on('error', sass.logError));
css.pipe(gulp.dest('./dist'));
return css.pipe(minify())
gulp.src('./archon.scss')
.pipe(sass().on('error', sass.logError))
.pipe(gulp.dest('./dist'));
return gulp.src('./archon.scss')
.pipe(sass().on('error', sass.logError))
.pipe(minify())
.pipe(rename({
suffix: '.min'
}))
Expand Down

0 comments on commit d4be201

Please sign in to comment.