@rotorsoft/act 1.4.0 → 1.5.1
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/.tsbuildinfo +1 -1
- package/dist/@types/act.d.ts +29 -4
- package/dist/@types/act.d.ts.map +1 -1
- package/dist/@types/adapters/in-memory-store.d.ts.map +1 -1
- package/dist/@types/internal/correlate-cycle.d.ts +6 -6
- package/dist/@types/internal/correlate-cycle.d.ts.map +1 -1
- package/dist/@types/internal/drain-cycle.d.ts +1 -1
- package/dist/@types/internal/drain-cycle.d.ts.map +1 -1
- package/dist/@types/internal/lru-map.d.ts +2 -2
- package/dist/@types/internal/lru-map.d.ts.map +1 -1
- package/dist/@types/internal/settle.d.ts +3 -5
- package/dist/@types/internal/settle.d.ts.map +1 -1
- package/dist/@types/types/errors.d.ts +4 -30
- package/dist/@types/types/errors.d.ts.map +1 -1
- package/dist/{chunk-XKCTGUW2.js → chunk-I4L224TZ.js} +15 -12
- package/dist/chunk-I4L224TZ.js.map +1 -0
- package/dist/{chunk-TZWDSNSN.js → chunk-PMAZTOSO.js} +31 -5
- package/dist/chunk-PMAZTOSO.js.map +1 -0
- package/dist/index.cjs +224 -167
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +183 -155
- package/dist/index.js.map +1 -1
- package/dist/test/index.cjs +34 -16
- package/dist/test/index.cjs.map +1 -1
- package/dist/test/index.js +7 -6
- package/dist/test/index.js.map +1 -1
- package/dist/types/index.cjs +30 -4
- package/dist/types/index.cjs.map +1 -1
- package/dist/types/index.js +1 -1
- package/package.json +1 -1
- package/dist/chunk-TZWDSNSN.js.map +0 -1
- package/dist/chunk-XKCTGUW2.js.map +0 -1
package/dist/test/index.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import {
|
|
2
2
|
InMemoryCache,
|
|
3
3
|
InMemoryStore
|
|
4
|
-
} from "../chunk-
|
|
5
|
-
import "../chunk-
|
|
4
|
+
} from "../chunk-I4L224TZ.js";
|
|
5
|
+
import "../chunk-PMAZTOSO.js";
|
|
6
6
|
import {
|
|
7
7
|
__commonJS,
|
|
8
8
|
__toESM
|
|
@@ -3801,12 +3801,14 @@ function manageArtifactAttachment(attachment) {
|
|
|
3801
3801
|
}
|
|
3802
3802
|
}
|
|
3803
3803
|
|
|
3804
|
-
// ../../node_modules/.pnpm/vite@
|
|
3804
|
+
// ../../node_modules/.pnpm/vite@8.0.14_@types+node@25.9.1_esbuild@0.27.2_jiti@2.6.1_terser@5.46.1_tsx@4.22.3_yaml@2.9.0/node_modules/vite/dist/node/module-runner.js
|
|
3805
3805
|
var SOURCEMAPPING_URL = "sourceMa";
|
|
3806
3806
|
SOURCEMAPPING_URL += "ppingURL";
|
|
3807
3807
|
var isWindows = typeof process < "u" && process.platform === "win32";
|
|
3808
3808
|
var AsyncFunction = async function() {
|
|
3809
3809
|
}.constructor;
|
|
3810
|
+
var textDecoder = new TextDecoder();
|
|
3811
|
+
var decodeBase64 = typeof Buffer == "function" && typeof Buffer.from == "function" ? (base64) => Buffer.from(base64, "base64").toString("utf-8") : (base64) => textDecoder.decode(Uint8Array.from(atob(base64), (c) => c.charCodeAt(0)));
|
|
3810
3812
|
var chars2 = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
|
|
3811
3813
|
var intToChar2 = new Uint8Array(64);
|
|
3812
3814
|
var charToInt2 = new Uint8Array(128);
|
|
@@ -3814,7 +3816,7 @@ for (let i2 = 0; i2 < chars2.length; i2++) {
|
|
|
3814
3816
|
let c = chars2.charCodeAt(i2);
|
|
3815
3817
|
intToChar2[i2] = c, charToInt2[c] = i2;
|
|
3816
3818
|
}
|
|
3817
|
-
var MODULE_RUNNER_SOURCEMAPPING_REGEXP =
|
|
3819
|
+
var MODULE_RUNNER_SOURCEMAPPING_REGEXP = RegExp(`//# ${SOURCEMAPPING_URL}=data:application/json;base64,(.+)`);
|
|
3818
3820
|
var retrieveFileHandlers = /* @__PURE__ */ new Set();
|
|
3819
3821
|
var retrieveSourceMapHandlers = /* @__PURE__ */ new Set();
|
|
3820
3822
|
var createExecHandlers = (handlers) => ((...args) => {
|
|
@@ -3841,12 +3843,11 @@ export async function resolve(specifier, context, nextResolve) {
|
|
|
3841
3843
|
}
|
|
3842
3844
|
|
|
3843
3845
|
`;
|
|
3844
|
-
`${customizationHookNamespace}`;
|
|
3845
3846
|
var envProxy = new Proxy({}, { get(_, p) {
|
|
3846
3847
|
throw Error(`[module runner] Dynamic access of "import.meta.env" is not supported. Please, use "import.meta.env.${String(p)}" instead.`);
|
|
3847
3848
|
} });
|
|
3848
3849
|
|
|
3849
|
-
// ../../node_modules/.pnpm/vitest@4.1.7_@
|
|
3850
|
+
// ../../node_modules/.pnpm/vitest@4.1.7_@types+node@25.9.1_@vitest+coverage-v8@4.1.7_vite@8.0.14_@types+node@25.9._80d5839fc632fdcd9de039dffc6761e7/node_modules/vitest/dist/index.js
|
|
3850
3851
|
var import_expect_type = __toESM(require_dist(), 1);
|
|
3851
3852
|
|
|
3852
3853
|
// src/test/sandbox.ts
|