@osdk/create-app 0.17.1 → 0.18.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/CHANGELOG.md +8 -2
- package/build/browser/index.js +1 -1
- package/build/cjs/index.cjs +1 -1
- package/build/esm/index.js +1 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,14 @@
|
|
|
1
1
|
# @osdk/create-app
|
|
2
2
|
|
|
3
|
-
## 0.
|
|
3
|
+
## 0.18.0
|
|
4
4
|
|
|
5
|
-
###
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 9e956e3: Makes the templates get embedded create-app instead of referencing them
|
|
8
|
+
|
|
9
|
+
## 0.18.0-beta.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
6
12
|
|
|
7
13
|
- 9e956e3: Makes the templates get embedded create-app instead of referencing them
|
|
8
14
|
|
package/build/browser/index.js
CHANGED
|
@@ -458,7 +458,7 @@ async function run({
|
|
|
458
458
|
|
|
459
459
|
// src/cli.ts
|
|
460
460
|
async function cli(args = process.argv) {
|
|
461
|
-
const base = yargs(hideBin(args)).version("0.
|
|
461
|
+
const base = yargs(hideBin(args)).version("0.18.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", {
|
|
462
462
|
type: "string",
|
|
463
463
|
describe: "Project name to create"
|
|
464
464
|
}).option("overwrite", {
|
package/build/cjs/index.cjs
CHANGED
|
@@ -467,7 +467,7 @@ async function run({
|
|
|
467
467
|
|
|
468
468
|
// src/cli.ts
|
|
469
469
|
async function cli(args = process.argv) {
|
|
470
|
-
const base = yargs__default.default(helpers.hideBin(args)).version("0.
|
|
470
|
+
const base = yargs__default.default(helpers.hideBin(args)).version("0.18.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", {
|
|
471
471
|
type: "string",
|
|
472
472
|
describe: "Project name to create"
|
|
473
473
|
}).option("overwrite", {
|
package/build/esm/index.js
CHANGED
|
@@ -458,7 +458,7 @@ async function run({
|
|
|
458
458
|
|
|
459
459
|
// src/cli.ts
|
|
460
460
|
async function cli(args = process.argv) {
|
|
461
|
-
const base = yargs(hideBin(args)).version("0.
|
|
461
|
+
const base = yargs(hideBin(args)).version("0.18.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", {
|
|
462
462
|
type: "string",
|
|
463
463
|
describe: "Project name to create"
|
|
464
464
|
}).option("overwrite", {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@osdk/create-app",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.18.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"access": "public",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -30,14 +30,14 @@
|
|
|
30
30
|
"@types/yargs": "^17.0.29",
|
|
31
31
|
"tmp": "^0.2.3",
|
|
32
32
|
"typescript": "^5.5.4",
|
|
33
|
-
"@osdk/create-app.template.next-static-export": "0.
|
|
34
|
-
"@osdk/create-app.template.tutorial-todo-aip-app": "0.
|
|
35
|
-
"@osdk/create-app.template.
|
|
36
|
-
"@osdk/
|
|
37
|
-
"@osdk/create-app.template.
|
|
33
|
+
"@osdk/create-app.template.next-static-export": "0.18.0",
|
|
34
|
+
"@osdk/create-app.template.tutorial-todo-aip-app": "0.18.0",
|
|
35
|
+
"@osdk/create-app.template.vue": "0.18.0",
|
|
36
|
+
"@osdk/monorepo.api-extractor": "~0.0.0",
|
|
37
|
+
"@osdk/create-app.template.tutorial-todo-app": "0.18.0",
|
|
38
38
|
"@osdk/monorepo.tsconfig": "~0.0.0",
|
|
39
39
|
"@osdk/monorepo.tsup": "~0.0.0",
|
|
40
|
-
"@osdk/
|
|
40
|
+
"@osdk/create-app.template.react": "0.18.0"
|
|
41
41
|
},
|
|
42
42
|
"publishConfig": {
|
|
43
43
|
"access": "public"
|