@arcfoundry/core 0.2.1 → 0.2.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.
|
@@ -2,6 +2,8 @@ const FALLBACK_TEST_GATES = [
|
|
|
2
2
|
["test", "test:unit"],
|
|
3
3
|
["test", "test:integration"],
|
|
4
4
|
["test", "test:e2e"],
|
|
5
|
+
];
|
|
6
|
+
const BROWSER_GATES = [
|
|
5
7
|
["browser-validation", "test:browser"],
|
|
6
8
|
];
|
|
7
9
|
const QUALITY_GATES = [
|
|
@@ -15,6 +17,7 @@ export function scriptGates(scripts) {
|
|
|
15
17
|
...(scripts.has("test")
|
|
16
18
|
? [["test", "test"]]
|
|
17
19
|
: FALLBACK_TEST_GATES.filter(([, script]) => scripts.has(script))),
|
|
20
|
+
...BROWSER_GATES.filter(([, script]) => scripts.has(script)),
|
|
18
21
|
...QUALITY_GATES.filter(([, script]) => scripts.has(script)),
|
|
19
22
|
];
|
|
20
23
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arcfoundry/core",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.2",
|
|
4
4
|
"description": "Core workflow, governance, artifact, and runtime primitives for Arc Foundry.",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"files": [
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@opencode-ai/sdk": "^1.15.11",
|
|
22
|
-
"@arcfoundry/schemas": "0.2.
|
|
22
|
+
"@arcfoundry/schemas": "0.2.2"
|
|
23
23
|
},
|
|
24
24
|
"engines": {
|
|
25
25
|
"node": "^25.9.0"
|