@hybridless/hybridless 0.1.0-beta4 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -37,6 +37,7 @@ process.on('SIGINT', function() {
|
|
|
37
37
|
try { input = JSON.parse(process.argv[2]); }
|
|
38
38
|
catch (e) { console.log('[Hybridless Runtime] - Error while decoding process arguments!', e); }
|
|
39
39
|
//Invoke
|
|
40
|
+
const __dirname = dirname(fileURLToPath(import.meta.url))
|
|
40
41
|
const functionPath = `${__dirname}/../app/${process.env.ENTRYPOINT}`;
|
|
41
42
|
const resp = await invoke(functionPath, input);
|
|
42
43
|
//Return
|