Skip to content

Commit

Permalink
nsqadmin: update frontend stack
Browse files Browse the repository at this point in the history
  • Loading branch information
jehiah committed May 21, 2021
1 parent a493996 commit 8cb2308
Show file tree
Hide file tree
Showing 3 changed files with 9,076 additions and 3,550 deletions.
5 changes: 2 additions & 3 deletions nsqadmin/gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ var clean = require('gulp-clean');
var gulp = require('gulp');
var notify = require('gulp-notify');
var path = require('path');
var sass = require('gulp-sass');
var sass = require('gulp-dart-sass');
var source = require('vinyl-source-stream');
var taskListing = require('gulp-task-listing');
var uglify = require('gulp-uglify');
Expand Down Expand Up @@ -55,8 +55,7 @@ function sassTask(root, inputFile) {
return gulp.src(path.join(root, 'css', inputFile))
.pipe(sass({
'sourceComments': 'map',
'onError': onError
}))
}).on('error', onError))
.pipe(gulp.dest(path.join(root, 'build/')));
};
}
Expand Down

0 comments on commit 8cb2308

Please sign in to comment.