@ubiquity-os/plugin-sdk 3.1.5 → 3.1.6
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/dist/index.js +2 -1
- package/dist/index.mjs +2 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -67,7 +67,8 @@ var PluginRuntimeInfo = class _PluginRuntimeInfo {
|
|
|
67
67
|
_PluginRuntimeInfo._instance = new NodeRuntimeInfo(env);
|
|
68
68
|
break;
|
|
69
69
|
default:
|
|
70
|
-
|
|
70
|
+
console.log("No runtime detected, falling back to Deno.");
|
|
71
|
+
_PluginRuntimeInfo._instance = new DenoRuntimeInfo(env);
|
|
71
72
|
break;
|
|
72
73
|
}
|
|
73
74
|
}
|
package/dist/index.mjs
CHANGED
|
@@ -29,7 +29,8 @@ var PluginRuntimeInfo = class _PluginRuntimeInfo {
|
|
|
29
29
|
_PluginRuntimeInfo._instance = new NodeRuntimeInfo(env);
|
|
30
30
|
break;
|
|
31
31
|
default:
|
|
32
|
-
|
|
32
|
+
console.log("No runtime detected, falling back to Deno.");
|
|
33
|
+
_PluginRuntimeInfo._instance = new DenoRuntimeInfo(env);
|
|
33
34
|
break;
|
|
34
35
|
}
|
|
35
36
|
}
|