mirror of
https://github.com/penpot/penpot.git
synced 2026-07-27 00:18:17 +00:00
🐛 Fix issue on frontend build process caused by deps update
This commit is contained in:
parent
4e974cd2f3
commit
c1117b6da9
@ -16,7 +16,7 @@ const modules = require("postcss-modules");
|
||||
|
||||
const clean = require("postcss-clean");
|
||||
const {mkdirp} = require("mkdirp");
|
||||
const rimraf = require("rimraf");
|
||||
const {rimraf} = require("rimraf");
|
||||
const sass = require("sass");
|
||||
const gettext = require("gettext-parser");
|
||||
const marked = require("marked");
|
||||
@ -266,7 +266,7 @@ gulp.task("polyfills", function() {
|
||||
***********************************************/
|
||||
|
||||
gulp.task("clean", function(next) {
|
||||
rimraf(paths.output, next);
|
||||
rimraf(paths.output).finally(next)
|
||||
});
|
||||
|
||||
gulp.task("copy:assets:images", function() {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user