mirror of
https://github.com/penpot/penpot.git
synced 2025-05-11 09:26:36 +02:00
🐛 Fix issue on frontend build process caused by deps update
This commit is contained in:
parent
4e974cd2f3
commit
c1117b6da9
1 changed files with 2 additions and 2 deletions
|
@ -16,7 +16,7 @@ const modules = require("postcss-modules");
|
||||||
|
|
||||||
const clean = require("postcss-clean");
|
const clean = require("postcss-clean");
|
||||||
const {mkdirp} = require("mkdirp");
|
const {mkdirp} = require("mkdirp");
|
||||||
const rimraf = require("rimraf");
|
const {rimraf} = require("rimraf");
|
||||||
const sass = require("sass");
|
const sass = require("sass");
|
||||||
const gettext = require("gettext-parser");
|
const gettext = require("gettext-parser");
|
||||||
const marked = require("marked");
|
const marked = require("marked");
|
||||||
|
@ -266,7 +266,7 @@ gulp.task("polyfills", function() {
|
||||||
***********************************************/
|
***********************************************/
|
||||||
|
|
||||||
gulp.task("clean", function(next) {
|
gulp.task("clean", function(next) {
|
||||||
rimraf(paths.output, next);
|
rimraf(paths.output).finally(next)
|
||||||
});
|
});
|
||||||
|
|
||||||
gulp.task("copy:assets:images", function() {
|
gulp.task("copy:assets:images", function() {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue