@osdk/create-app 0.12.1-main-20240426151555 → 0.13.0-main-20240430161814
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/CHANGELOG.md +5 -1
- package/build/js/index.cjs +1 -1
- package/build/js/index.mjs +1 -1
- package/package.json +3 -6
package/CHANGELOG.md
CHANGED
package/build/js/index.cjs
CHANGED
|
@@ -453,7 +453,7 @@ async function run({
|
|
|
453
453
|
|
|
454
454
|
// src/cli.ts
|
|
455
455
|
async function cli(args = process.argv) {
|
|
456
|
-
const base = yargs__default.default(helpers.hideBin(args)).version("0.
|
|
456
|
+
const base = yargs__default.default(helpers.hideBin(args)).version("0.13.0-main-20240430161814").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", {
|
|
457
457
|
type: "string",
|
|
458
458
|
describe: "Project name to create"
|
|
459
459
|
}).option("overwrite", {
|
package/build/js/index.mjs
CHANGED
|
@@ -443,7 +443,7 @@ async function run({
|
|
|
443
443
|
|
|
444
444
|
// src/cli.ts
|
|
445
445
|
async function cli(args = process.argv) {
|
|
446
|
-
const base = yargs(hideBin(args)).version("0.
|
|
446
|
+
const base = yargs(hideBin(args)).version("0.13.0-main-20240430161814").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", {
|
|
447
447
|
type: "string",
|
|
448
448
|
describe: "Project name to create"
|
|
449
449
|
}).option("overwrite", {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@osdk/create-app",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.13.0-main-20240430161814",
|
|
4
4
|
"description": "",
|
|
5
5
|
"access": "public",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -11,13 +11,11 @@
|
|
|
11
11
|
"exports": {
|
|
12
12
|
".": {
|
|
13
13
|
"types": "./build/types/index.d.ts",
|
|
14
|
-
"import": "./build/js/index.mjs"
|
|
15
|
-
"require": "./build/js/index.cjs"
|
|
14
|
+
"import": "./build/js/index.mjs"
|
|
16
15
|
},
|
|
17
16
|
"./*": {
|
|
18
17
|
"types": "./build/types/public/*.d.ts",
|
|
19
|
-
"import": "./build/js/public/*.mjs"
|
|
20
|
-
"require": "./build/js/public/*.cjs"
|
|
18
|
+
"import": "./build/js/public/*.mjs"
|
|
21
19
|
}
|
|
22
20
|
},
|
|
23
21
|
"dependencies": {
|
|
@@ -47,7 +45,6 @@
|
|
|
47
45
|
"templates",
|
|
48
46
|
"*.d.ts"
|
|
49
47
|
],
|
|
50
|
-
"main": "./build/js/index.cjs",
|
|
51
48
|
"module": "./build/js/index.mjs",
|
|
52
49
|
"types": "./build/types/index.d.ts",
|
|
53
50
|
"type": "module",
|