mirror of
https://github.com/penpot/penpot.git
synced 2025-12-11 22:14:05 +01:00
🐛 Fix many issues on dev environment.
This commit is contained in:
committed by
Alonso Torres
parent
a0627efffe
commit
ab35716ba2
@@ -232,8 +232,10 @@ gulp.task("copy:assets:fonts", function() {
|
||||
|
||||
gulp.task("copy:assets", gulp.parallel("copy:assets:images", "copy:assets:fonts"));
|
||||
|
||||
gulp.task("dev:dirs", function(next) {
|
||||
mkdirp("./resources/public/css/").then(() => next())
|
||||
gulp.task("dev:dirs", async function(next) {
|
||||
await mkdirp("./resources/public/css/");
|
||||
await mkdirp("./resources/public/js/");
|
||||
next();
|
||||
});
|
||||
|
||||
gulp.task("watch:main", function() {
|
||||
|
||||
Reference in New Issue
Block a user