@osdk/create-app 0.5.0 → 0.6.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/build/js/index.cjs +1 -1
- package/build/js/index.mjs +1 -1
- package/package.json +1 -1
package/build/js/index.cjs
CHANGED
|
@@ -336,7 +336,7 @@ async function promptTemplate(parsed) {
|
|
|
336
336
|
|
|
337
337
|
// src/cli.ts
|
|
338
338
|
async function cli(args = process.argv) {
|
|
339
|
-
const base = yargs__default.default(helpers.hideBin(args)).version("0.
|
|
339
|
+
const base = yargs__default.default(helpers.hideBin(args)).version("0.6.0").wrap(Math.min(150, yargs__default.default().terminalWidth())).strict().help().command("$0 [project] [--<option>]", "Create a new OSDK application based on framework templates. Information may be provided through options to skip interactive prompts.", (yargs2) => yargs2.positional("project", {
|
|
340
340
|
type: "string",
|
|
341
341
|
describe: "Project name to create"
|
|
342
342
|
}).option("overwrite", {
|
package/build/js/index.mjs
CHANGED
|
@@ -326,7 +326,7 @@ async function promptTemplate(parsed) {
|
|
|
326
326
|
|
|
327
327
|
// src/cli.ts
|
|
328
328
|
async function cli(args = process.argv) {
|
|
329
|
-
const base = yargs(hideBin(args)).version("0.
|
|
329
|
+
const base = yargs(hideBin(args)).version("0.6.0").wrap(Math.min(150, yargs().terminalWidth())).strict().help().command("$0 [project] [--<option>]", "Create a new OSDK application based on framework templates. Information may be provided through options to skip interactive prompts.", (yargs2) => yargs2.positional("project", {
|
|
330
330
|
type: "string",
|
|
331
331
|
describe: "Project name to create"
|
|
332
332
|
}).option("overwrite", {
|