0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-04-05 03:21:26 -05:00

🐛 Fix unexpected issues on gulpfile.

This commit is contained in:
Andrey Antukh 2020-11-11 16:37:47 +01:00
parent 58585a6521
commit c05e377d16
2 changed files with 3 additions and 3 deletions

View file

@ -1 +1 @@
v12.18.3
v14.15.0

View file

@ -46,7 +46,7 @@ function scssPipeline(options) {
const touch = (_path) => {
return new Promise((resolve, reject) => {
return fs.utimes(file.path, new Date(), new Date(), () => {
return fs.utimes(_path, new Date(), new Date(), () => {
resolve(_path);
});
})
@ -78,7 +78,7 @@ function scssPipeline(options) {
.then(() => render(input))
.then((res) => postprocess(res, input, output))
.then(async (res) => {
await write(output, res);
await write(output, res.css);
await touch(output);
return res;
})