@coder/aegis 0.1.1-rc.0 → 0.2.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/lib/index.js +1 -0
- package/package.json +7 -7
package/lib/index.js
CHANGED
|
@@ -27,6 +27,7 @@ const OVERLAY_KINDS = /* @__PURE__ */ new Set([
|
|
|
27
27
|
]);
|
|
28
28
|
function defineExperiment(id, define) {
|
|
29
29
|
assertSafeID("experiment", id);
|
|
30
|
+
strict(id !== "bundle-assets", `experiment id "bundle-assets" collides with the reserved bundle-assets store namespace`);
|
|
30
31
|
const builder = new ExperimentBuilder(id);
|
|
31
32
|
define(builder);
|
|
32
33
|
return builder.build();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@coder/aegis",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "aegis CLI and TypeScript eval-authoring facade (Go binary with embedded TS eval compiler and web UI, plus the @coder/aegis import surface)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -23,10 +23,10 @@
|
|
|
23
23
|
"url": "git+https://github.com/coder/aegis.git"
|
|
24
24
|
},
|
|
25
25
|
"optionalDependencies": {
|
|
26
|
-
"@coder/aegis-linux-x64": "0.
|
|
27
|
-
"@coder/aegis-linux-arm64": "0.
|
|
28
|
-
"@coder/aegis-darwin-x64": "0.
|
|
29
|
-
"@coder/aegis-darwin-arm64": "0.
|
|
30
|
-
"@coder/aegis-win32-x64": "0.
|
|
26
|
+
"@coder/aegis-linux-x64": "0.2.0",
|
|
27
|
+
"@coder/aegis-linux-arm64": "0.2.0",
|
|
28
|
+
"@coder/aegis-darwin-x64": "0.2.0",
|
|
29
|
+
"@coder/aegis-darwin-arm64": "0.2.0",
|
|
30
|
+
"@coder/aegis-win32-x64": "0.2.0"
|
|
31
31
|
}
|
|
32
|
-
}
|
|
32
|
+
}
|