1
0
Fork 0
mirror of https://github.com/anyproto/anytype-ts.git synced 2025-06-08 05:57:02 +09:00
This commit is contained in:
Andrew Simachev 2021-06-15 18:11:47 +03:00
parent 17be50c46e
commit 97fb872c71
3 changed files with 289 additions and 67 deletions

View file

@ -17,6 +17,12 @@ stdin.on('end', function() {
let packageJSON = JSON.parse(packageFile);
lines = [ ...new Set(lines) ];
lines = lines.map((it) => {
return {
from: it,
to: it,
};
});
packageJSON.build.files = baseDepsJSON.concat(lines).filter(function (el) {
return el != "";