uni-run 2.0.3 → 2.0.5
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/{app-ymqYDN8R.mjs → app-BQxau7W0.mjs} +22 -6
- package/dist/run.mjs +1 -1
- package/dist/rux.mjs +1 -1
- package/package.json +1 -1
|
@@ -30703,9 +30703,11 @@ config(en_default());
|
|
|
30703
30703
|
const USER_CONFIG_PATH = path.join(os$1.homedir(), ".uni-run.json");
|
|
30704
30704
|
const runtimeSchema = object({
|
|
30705
30705
|
python: _enum([
|
|
30706
|
-
"python",
|
|
30707
30706
|
"python3",
|
|
30708
|
-
"
|
|
30707
|
+
"python",
|
|
30708
|
+
"uv",
|
|
30709
|
+
"mise-python",
|
|
30710
|
+
"mise-uv"
|
|
30709
30711
|
]),
|
|
30710
30712
|
javascript: _enum([
|
|
30711
30713
|
"node",
|
|
@@ -30714,9 +30716,10 @@ const runtimeSchema = object({
|
|
|
30714
30716
|
]),
|
|
30715
30717
|
typescript: _enum([
|
|
30716
30718
|
"tsx",
|
|
30717
|
-
"tsx
|
|
30719
|
+
"mise-tsx",
|
|
30718
30720
|
"ts-node",
|
|
30719
|
-
"ts-node
|
|
30721
|
+
"mise-ts-node",
|
|
30722
|
+
"node",
|
|
30720
30723
|
"deno",
|
|
30721
30724
|
"bun"
|
|
30722
30725
|
]),
|
|
@@ -30797,9 +30800,22 @@ const defaultRuntimes = [
|
|
|
30797
30800
|
var _userConfig$runtime$t, _userConfig$runtime2;
|
|
30798
30801
|
const runtime = (_userConfig$runtime$t = (_userConfig$runtime2 = readUserConfig().runtime) === null || _userConfig$runtime2 === void 0 ? void 0 : _userConfig$runtime2.typescript) !== null && _userConfig$runtime$t !== void 0 ? _userConfig$runtime$t : "tsx";
|
|
30799
30802
|
if (runtime === "tsx") return { start: ["tsx", ...args] };
|
|
30800
|
-
if (runtime === "tsx
|
|
30803
|
+
if (runtime === "mise-tsx") return { start: [
|
|
30804
|
+
"mise",
|
|
30805
|
+
"exec",
|
|
30806
|
+
"--",
|
|
30807
|
+
"tsx",
|
|
30808
|
+
...args
|
|
30809
|
+
] };
|
|
30801
30810
|
if (runtime === "ts-node") return { start: ["ts-node", ...args] };
|
|
30802
|
-
if (runtime === "ts-node
|
|
30811
|
+
if (runtime === "mise-ts-node") return { start: [
|
|
30812
|
+
"mise",
|
|
30813
|
+
"exec",
|
|
30814
|
+
"--",
|
|
30815
|
+
"ts-node",
|
|
30816
|
+
...args
|
|
30817
|
+
] };
|
|
30818
|
+
if (runtime === "node") return { start: ["node", ...args] };
|
|
30803
30819
|
if (runtime === "bun") return { start: [
|
|
30804
30820
|
"bun",
|
|
30805
30821
|
"run",
|
package/dist/run.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import { a as resolveSharedConfigOptions, c as TEMP_DIR, d as init_objectSpread2, i as appExecutionConfig, l as source_default, n as defaultRuntimes, o as _asyncToGenerator, r as Execution, s as init_asyncToGenerator, t as app, u as _objectSpread2 } from "./app-
|
|
2
|
+
import { a as resolveSharedConfigOptions, c as TEMP_DIR, d as init_objectSpread2, i as appExecutionConfig, l as source_default, n as defaultRuntimes, o as _asyncToGenerator, r as Execution, s as init_asyncToGenerator, t as app, u as _objectSpread2 } from "./app-BQxau7W0.mjs";
|
|
3
3
|
import fs from "fs";
|
|
4
4
|
init_objectSpread2();
|
|
5
5
|
init_asyncToGenerator();
|
package/dist/rux.mjs
CHANGED