@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.
- package/dist/cli.js +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.
|
|
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));
|