Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
123456789 |
- const gulp = require('gulp');
- const copy = require('./subtasks/copy');
- const scss = require('./subtasks/scss');
- const watch = require('./subtasks/watch');
-
- module.exports.copy = copy;
- module.exports.scss = scss;
- module.exports.watch = watch;
- module.exports.default = gulp.series(copy, scss);
|