@opencomputer/cli 0.4.5 → 0.4.6
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/project.js +1 -1
- package/dist/project.test.js +1 -1
- package/package.json +1 -1
package/dist/project.js
CHANGED
|
@@ -397,7 +397,7 @@ export default function Agent() {
|
|
|
397
397
|
"react-dom": "^19.2.0",
|
|
398
398
|
},
|
|
399
399
|
devDependencies: {
|
|
400
|
-
"@opencomputer/cli": "^0.4.
|
|
400
|
+
"@opencomputer/cli": "^0.4.6",
|
|
401
401
|
"@types/node": "^24.0.0",
|
|
402
402
|
"@types/react": "^19.2.0",
|
|
403
403
|
"@types/react-dom": "^19.2.0",
|
package/dist/project.test.js
CHANGED
|
@@ -23,7 +23,7 @@ test("init creates a multi-agent-ready project and React hello world app", async
|
|
|
23
23
|
assert.equal(packageJSON.scripts.dev, "opencomputer dev");
|
|
24
24
|
assert.equal(packageJSON.scripts["dev:web"], "vite");
|
|
25
25
|
assert.equal(packageJSON.dependencies["@opencomputer/agent"], "^0.2.0");
|
|
26
|
-
assert.equal(packageJSON.devDependencies["@opencomputer/cli"], "^0.4.
|
|
26
|
+
assert.equal(packageJSON.devDependencies["@opencomputer/cli"], "^0.4.6");
|
|
27
27
|
assert.ok(packageJSON.devDependencies["@types/node"]);
|
|
28
28
|
const viteConfig = await readFile(resolve(root, "vite.config.ts"), "utf8");
|
|
29
29
|
assert.match(viteConfig, /command === "serve"/);
|