Adds dummy modules to facilitate improved import error handling. Removes unnecessary legacy PAS module from standard modules. Fixes /dist/index.js not being populated properly.

This commit is contained in:
Alex Williams
2024-05-16 19:31:00 +01:00
parent 24df4c9752
commit d04d380c67
52 changed files with 243 additions and 60 deletions

View File

@@ -11,7 +11,7 @@ if (!fs.existsSync('./dist')){
fs.mkdirSync('./dist');
}
fs.open('./dist/index.json', 'w', function() {
fs.open('./dist/index.js', 'w', function() {
fs.writeFile('./dist/index.js', code, function(err) {});
});