@oodarun/cli 0.1.11 → 0.1.12

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.
Files changed (2) hide show
  1. package/dist/cli.js +2 -2
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -2026,7 +2026,7 @@ if (files.length === 0) {
2026
2026
  process.exit(1);
2027
2027
  }
2028
2028
 
2029
- const body = JSON.stringify({ slug, files });
2029
+ const body = JSON.stringify({ slug, projectName: orgProjectName || undefined, files });
2030
2030
  console.log('Uploading (' + (body.length / 1024 / 1024).toFixed(1) + 'MB)...');
2031
2031
 
2032
2032
  const res = await fetch(PUBLISH_URL, {
@@ -5373,7 +5373,7 @@ async function deployFromGitHubFlow(target, apiToken, claudeToken) {
5373
5373
  }
5374
5374
 
5375
5375
  // src/cli/index.ts
5376
- var CLI_VERSION = "0.1.10";
5376
+ var CLI_VERSION = "0.1.11";
5377
5377
  function formatMutationError(result) {
5378
5378
  const parts = [];
5379
5379
  if (result.status !== void 0) parts.push(String(result.status));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oodarun/cli",
3
- "version": "0.1.11",
3
+ "version": "0.1.12",
4
4
  "description": "Launch Claude Code on cloud dev environments",
5
5
  "type": "module",
6
6
  "license": "UNLICENSED",