@intuned/runtime-dev 0.1.0-test.18 → 0.1.0-test.19

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.
@@ -213,9 +213,7 @@ export async function importModule(path: string) {
213
213
  // cleanup environment variables before running the user code
214
214
  // cleanEnvironmentVariables();
215
215
 
216
- const fullPath = `./${path}.ts`;
217
-
218
- const [folderName, ...functionNameParts] = fullPath.split("/");
216
+ const [folderName, ...functionNameParts] = path.split("/");
219
217
  const functionNameDepth = functionNameParts.length;
220
218
 
221
219
  // string literals should be inline
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@intuned/runtime-dev",
3
- "version": "0.1.0-test.18",
3
+ "version": "0.1.0-test.19",
4
4
  "description": "Intuned runtime",
5
5
  "exports": {
6
6
  ".": "./dist/index.js",