@nice-code/action 0.13.0 → 0.14.0
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/README.md +292 -18
- package/build/devtools/browser/index.cjs +2099 -2
- package/build/devtools/browser/index.cjs.map +1 -1
- package/build/devtools/browser/index.mjs +2101 -2
- package/build/devtools/browser/index.mjs.map +1 -1
- package/build/index.cjs +2 -23
- package/build/index.cjs.map +1 -1
- package/build/rolldown-runtime-emK7D4bc.cjs +35 -0
- package/package.json +4 -4
package/build/index.cjs
CHANGED
|
@@ -1,26 +1,5 @@
|
|
|
1
1
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
2
|
-
|
|
3
|
-
var __create = Object.create;
|
|
4
|
-
var __defProp = Object.defineProperty;
|
|
5
|
-
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
6
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
7
|
-
var __getProtoOf = Object.getPrototypeOf;
|
|
8
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
9
|
-
var __copyProps = (to, from, except, desc) => {
|
|
10
|
-
if (from && typeof from === "object" || typeof from === "function") for (var keys = __getOwnPropNames(from), i = 0, n = keys.length, key; i < n; i++) {
|
|
11
|
-
key = keys[i];
|
|
12
|
-
if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {
|
|
13
|
-
get: ((k) => from[k]).bind(null, key),
|
|
14
|
-
enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
|
|
15
|
-
});
|
|
16
|
-
}
|
|
17
|
-
return to;
|
|
18
|
-
};
|
|
19
|
-
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", {
|
|
20
|
-
value: mod,
|
|
21
|
-
enumerable: true
|
|
22
|
-
}) : target, mod));
|
|
23
|
-
//#endregion
|
|
2
|
+
const require_rolldown_runtime = require("./rolldown-runtime-emK7D4bc.cjs");
|
|
24
3
|
const require_RunningAction_types = require("./RunningAction.types-DjCX1xp5.cjs");
|
|
25
4
|
let nanoid = require("nanoid");
|
|
26
5
|
let _nice_code_error = require("@nice-code/error");
|
|
@@ -29,7 +8,7 @@ let _nice_code_common_errors = require("@nice-code/common-errors");
|
|
|
29
8
|
let msgpackr = require("msgpackr");
|
|
30
9
|
let _nice_code_util = require("@nice-code/util");
|
|
31
10
|
let valibot = require("valibot");
|
|
32
|
-
valibot = __toESM(valibot, 1);
|
|
11
|
+
valibot = require_rolldown_runtime.__toESM(valibot, 1);
|
|
33
12
|
const UNSET_RUNTIME_ENV_ID = "_unset_";
|
|
34
13
|
//#endregion
|
|
35
14
|
//#region src/ActionRuntime/utils/runtimeCoordinateToStringIds.ts
|