@usecontextlayer/ctxe 0.3.0 → 0.3.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/cli.mjs +4 -4
- package/package.json +4 -3
- package/dist/watcher--dKy643p.mjs +0 -2399
package/dist/cli.mjs
CHANGED
|
@@ -27041,7 +27041,7 @@ function validate(raw, sourcePath) {
|
|
|
27041
27041
|
}
|
|
27042
27042
|
function applyDefaults(input) {
|
|
27043
27043
|
return {
|
|
27044
|
-
synthesizerImage: input.synthesizerImage ?? "ghcr.io/usecontextlayer/ctx-sandbox:0.3.
|
|
27044
|
+
synthesizerImage: input.synthesizerImage ?? "ghcr.io/usecontextlayer/ctx-sandbox:0.3.1",
|
|
27045
27045
|
...input.microsandbox !== void 0 ? { microsandbox: input.microsandbox } : {},
|
|
27046
27046
|
...input.oldestConsideredPoint !== void 0 ? { oldestConsideredPoint: input.oldestConsideredPoint } : {},
|
|
27047
27047
|
sliceSize: input.sliceSize ?? 3e5
|
|
@@ -27506,7 +27506,7 @@ async function discoverSynthesizers(synthesizersFolder) {
|
|
|
27506
27506
|
};
|
|
27507
27507
|
}
|
|
27508
27508
|
async function watchSynthesizerFolder(input) {
|
|
27509
|
-
const subscription = await (await import("
|
|
27509
|
+
const subscription = await (await import("@parcel/watcher")).subscribe(input.synthesizersFolder, (error) => {
|
|
27510
27510
|
if (error) {
|
|
27511
27511
|
input.onError(error);
|
|
27512
27512
|
return;
|
|
@@ -32500,7 +32500,7 @@ function deriveContextEnginePaths(rootDir) {
|
|
|
32500
32500
|
|
|
32501
32501
|
//#endregion
|
|
32502
32502
|
//#region package.json
|
|
32503
|
-
var version = "0.3.
|
|
32503
|
+
var version = "0.3.1";
|
|
32504
32504
|
|
|
32505
32505
|
//#endregion
|
|
32506
32506
|
//#region cli.ts
|
|
@@ -32579,4 +32579,4 @@ runCli().catch((error) => {
|
|
|
32579
32579
|
});
|
|
32580
32580
|
|
|
32581
32581
|
//#endregion
|
|
32582
|
-
export { createProgram,
|
|
32582
|
+
export { createProgram, resolveRepoContext, resolveRuntimePaths, runCli };
|
package/package.json
CHANGED
|
@@ -3,21 +3,22 @@
|
|
|
3
3
|
"ctxe": "./dist/cli.mjs"
|
|
4
4
|
},
|
|
5
5
|
"dependencies": {
|
|
6
|
+
"@parcel/watcher": "^2.5.6",
|
|
6
7
|
"microsandbox": "^0.4.6"
|
|
7
8
|
},
|
|
8
9
|
"devDependencies": {
|
|
9
10
|
"commander": "^14.0.3",
|
|
10
11
|
"consola": "^3.4.2",
|
|
11
12
|
"zod": "^4.4.3",
|
|
12
|
-
"@usecontextlayer/engine": "0.3.
|
|
13
|
-
"@usecontextlayer/shared": "0.3.
|
|
13
|
+
"@usecontextlayer/engine": "0.3.1",
|
|
14
|
+
"@usecontextlayer/shared": "0.3.1"
|
|
14
15
|
},
|
|
15
16
|
"files": [
|
|
16
17
|
"dist"
|
|
17
18
|
],
|
|
18
19
|
"name": "@usecontextlayer/ctxe",
|
|
19
20
|
"type": "module",
|
|
20
|
-
"version": "0.3.
|
|
21
|
+
"version": "0.3.1",
|
|
21
22
|
"scripts": {
|
|
22
23
|
"build": "npx tsdown",
|
|
23
24
|
"clean": "rm -rf dist *.tsbuildinfo",
|