builders: update yarn builder

This commit is contained in:
moscovium
2018-10-03 16:55:18 +02:00
parent 03362d2c6d
commit 83f6045167
2 changed files with 5839 additions and 5576 deletions

View File

@@ -44,6 +44,15 @@ const yarnBuildTask = {
return; return;
} }
const resourcePath = GetResourcePath(resourceName);
const yarnLock = path.resolve(resourcePath, 'yarn.lock');
try {
fs.utimesSync(yarnLock, new Date(), new Date());
} catch (e) {
}
cb(true); cb(true);
}); });
}); });

File diff suppressed because one or more lines are too long