Enabled back-end running of functions, moved indexing to server.

This commit is contained in:
Zef Hemel
2022-03-18 14:59:04 +01:00
parent 97b9d3a3e0
commit 8bff6d98e1
27 changed files with 538 additions and 367 deletions
+2 -1
View File
@@ -40,7 +40,8 @@ export default ${functionName};`
if (inFile !== filePath) {
await unlink(inFile);
}
return jsCode;
// Strip final ';'
return jsCode.substring(0, jsCode.length - 2);
}
async function bundle(manifestPath, sourceMaps) {