archctx 0.4.1 → 0.4.2
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/assets/catalog.yaml +2 -2
- package/bin/archctx.mjs +5 -1
- package/package.json +1 -1
package/assets/catalog.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": "archcontext.practice-catalog-manifest/v1",
|
|
3
3
|
"catalogVersion": "2026.06.0",
|
|
4
|
-
"productVersion": "0.4.
|
|
4
|
+
"productVersion": "0.4.2",
|
|
5
5
|
"generatedAt": "1970-01-01T00:00:00.000Z",
|
|
6
6
|
"entries": [
|
|
7
7
|
{
|
|
@@ -389,5 +389,5 @@
|
|
|
389
389
|
"structurizr.dsl",
|
|
390
390
|
"twelve-factor"
|
|
391
391
|
],
|
|
392
|
-
"catalogDigest": "sha256:
|
|
392
|
+
"catalogDigest": "sha256:7fc97d6c05657eeeee604a302a22e0afe77dc2d0ffea89442de193e570d9b8bf"
|
|
393
393
|
}
|
package/bin/archctx.mjs
CHANGED
|
@@ -1000,7 +1000,7 @@ function productVersionManifest() {
|
|
|
1000
1000
|
}
|
|
1001
1001
|
};
|
|
1002
1002
|
}
|
|
1003
|
-
var ARCHCONTEXT_PRODUCT_NAME = "archctx", ARCHCONTEXT_PRODUCT_VERSION = "0.4.
|
|
1003
|
+
var ARCHCONTEXT_PRODUCT_NAME = "archctx", ARCHCONTEXT_PRODUCT_VERSION = "0.4.2", ARCHCONTEXT_PACKAGE_MANAGER = "bun@1.3.10", ARCHCONTEXT_NODE_RANGE = ">=24 <26", LOCAL_RUNTIME_RPC_SCHEMA_VERSION = "archcontext.runtime-rpc/v1", ARCHCONTEXT_SCHEMA_SET_VERSION = "2026-07-11.explorer-view-v2";
|
|
1004
1004
|
|
|
1005
1005
|
// packages/contracts/src/validator.ts
|
|
1006
1006
|
function validateJsonSchema(schema, value) {
|
|
@@ -5613,6 +5613,8 @@ var DEFAULT_IGNORES = new Set([
|
|
|
5613
5613
|
"_ops",
|
|
5614
5614
|
"_ref",
|
|
5615
5615
|
".archcontext/.local",
|
|
5616
|
+
".claude/.session-id",
|
|
5617
|
+
".claude/.trace.jsonl",
|
|
5616
5618
|
".DS_Store"
|
|
5617
5619
|
]);
|
|
5618
5620
|
function repositoryFingerprint(root) {
|
|
@@ -5759,6 +5761,8 @@ var DEFAULT_IGNORES2 = new Set([
|
|
|
5759
5761
|
"_ops",
|
|
5760
5762
|
"_ref",
|
|
5761
5763
|
".archcontext/.local",
|
|
5764
|
+
".claude/.session-id",
|
|
5765
|
+
".claude/.trace.jsonl",
|
|
5762
5766
|
".DS_Store"
|
|
5763
5767
|
]);
|
|
5764
5768
|
function repositoryFingerprint2(root) {
|