1
0
mirror of https://github.com/NicolasConstant/sengi synced 2024-12-12 08:46:44 +01:00
Sengi-Windows-MacOS-Linux/docs/gulpfile.js
2019-04-10 21:06:19 -04:00

13 lines
309 B
JavaScript

// Sass configuration
var gulp = require('gulp');
var run = require('gulp-run');
gulp.task('npmsass', function () {
// setTimeout(function () {
run('npm start').exec();
// }, 300);
});
gulp.task('default', ['npmsass'], function () {
gulp.watch('./assets/sass/**/*.scss', ['npmsass']);
})