@joystick.js/node-canary 0.0.0-canary.451 → 0.0.0-canary.452

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.
@@ -1 +1 @@
1
- import a from"./get_platform_safe_path.js";const e=async(t="")=>(await import(a(t)))?.default;var f=e;export{f as default};
1
+ import"./get_platform_safe_path.js";const a=async(t="")=>(await import(t))?.default;var f=a;export{f as default};
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@joystick.js/node-canary",
3
3
  "type": "module",
4
- "version": "0.0.0-canary.451",
4
+ "version": "0.0.0-canary.452",
5
5
  "description": "The Node.js framework for Joystick.",
6
6
  "main": "./dist/index.js",
7
7
  "scripts": {
@@ -1,9 +1,7 @@
1
1
  import get_platform_safe_path from "./get_platform_safe_path.js";
2
2
 
3
3
  const dynamic_import = async (path = '') => {
4
- const file = await import(
5
- get_platform_safe_path(path)
6
- );
4
+ const file = await import(path);
7
5
  return file?.default;
8
6
  };
9
7