@castari/cli 0.0.8 → 0.0.10
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/commands/deploy.js +1 -1
- package/dist/commands/init.js +0 -3
- package/package.json +2 -2
package/dist/commands/deploy.js
CHANGED
|
@@ -25,7 +25,7 @@ export async function deploy(options) {
|
|
|
25
25
|
const projectRoot = process.cwd();
|
|
26
26
|
// Add local files, respecting a simple ignore list for now
|
|
27
27
|
// Ideally we'd parse .gitignore, but for MVP let's just ignore common heavy folders
|
|
28
|
-
const ignoreList = ['node_modules', '.git', 'dist', '.
|
|
28
|
+
const ignoreList = ['node_modules', '.git', 'dist', '.env'];
|
|
29
29
|
zip.addLocalFolder(projectRoot, undefined, (filename) => {
|
|
30
30
|
// Simple filter: return false to exclude
|
|
31
31
|
// filename is the relative path in the zip? No, it seems to be the absolute path or filename.
|
package/dist/commands/init.js
CHANGED
|
@@ -598,9 +598,6 @@ export default function Home() {
|
|
|
598
598
|
<div className="panel-header">
|
|
599
599
|
<div>
|
|
600
600
|
<div className="panel-title">Chat with Castari</div>
|
|
601
|
-
<p className="panel-copy">
|
|
602
|
-
This agent runs in a live Daytona sandbox.
|
|
603
|
-
</p>
|
|
604
601
|
</div>
|
|
605
602
|
<span className="pill pill-accent">Live</span>
|
|
606
603
|
</div>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@castari/cli",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.10",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"bin": {
|
|
6
6
|
"castari": "./dist/index.js"
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@anthropic-ai/claude-agent-sdk": "^0.1.44",
|
|
21
|
-
"@castari/sdk": "^0.0.
|
|
21
|
+
"@castari/sdk": "^0.0.7",
|
|
22
22
|
"adm-zip": "^0.5.16",
|
|
23
23
|
"cac": "^6.7.14",
|
|
24
24
|
"chalk": "^5.3.0",
|