@osdk/create-app 2.0.11 → 2.0.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/CHANGELOG.md +2 -0
- package/build/browser/index.js +2 -2
- package/build/esm/index.js +2 -2
- package/package.json +14 -14
package/CHANGELOG.md
CHANGED
package/build/browser/index.js
CHANGED
|
@@ -459,7 +459,7 @@ async function run({
|
|
|
459
459
|
cwd: fileURLToPath(import.meta.url)
|
|
460
460
|
});
|
|
461
461
|
ourPackageJsonPath ? JSON.parse(fs2.readFileSync(ourPackageJsonPath, "utf-8")).version : void 0;
|
|
462
|
-
const clientVersion = "2.0.
|
|
462
|
+
const clientVersion = "2.0.12";
|
|
463
463
|
const templateContext = {
|
|
464
464
|
project,
|
|
465
465
|
foundryUrl,
|
|
@@ -532,7 +532,7 @@ async function run({
|
|
|
532
532
|
|
|
533
533
|
// src/cli.ts
|
|
534
534
|
async function cli(args = process.argv) {
|
|
535
|
-
const base = yargs(hideBin(args)).version("2.0.
|
|
535
|
+
const base = yargs(hideBin(args)).version("2.0.12").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", {
|
|
536
536
|
type: "string",
|
|
537
537
|
describe: "Project name to create"
|
|
538
538
|
}).option("overwrite", {
|
package/build/esm/index.js
CHANGED
|
@@ -459,7 +459,7 @@ async function run({
|
|
|
459
459
|
cwd: fileURLToPath(import.meta.url)
|
|
460
460
|
});
|
|
461
461
|
ourPackageJsonPath ? JSON.parse(fs2.readFileSync(ourPackageJsonPath, "utf-8")).version : void 0;
|
|
462
|
-
const clientVersion = "2.0.
|
|
462
|
+
const clientVersion = "2.0.12";
|
|
463
463
|
const templateContext = {
|
|
464
464
|
project,
|
|
465
465
|
foundryUrl,
|
|
@@ -532,7 +532,7 @@ async function run({
|
|
|
532
532
|
|
|
533
533
|
// src/cli.ts
|
|
534
534
|
async function cli(args = process.argv) {
|
|
535
|
-
const base = yargs(hideBin(args)).version("2.0.
|
|
535
|
+
const base = yargs(hideBin(args)).version("2.0.12").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", {
|
|
536
536
|
type: "string",
|
|
537
537
|
describe: "Project name to create"
|
|
538
538
|
}).option("overwrite", {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@osdk/create-app",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.12",
|
|
4
4
|
"description": "",
|
|
5
5
|
"access": "public",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -30,20 +30,20 @@
|
|
|
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": "2.0.
|
|
34
|
-
"@osdk/create-app.template.react": "2.0.
|
|
35
|
-
"@osdk/create-app.template.next-static-export.v2": "2.0.
|
|
36
|
-
"@osdk/create-app.template.tutorial-todo-aip-app": "2.0.
|
|
37
|
-
"@osdk/create-app.template.react.beta": "2.0.
|
|
38
|
-
"@osdk/create-app.template.tutorial-todo-app": "2.0.
|
|
39
|
-
"@osdk/create-app.template.tutorial-todo-
|
|
40
|
-
"@osdk/create-app.template.tutorial-todo-app.beta": "2.0.
|
|
41
|
-
"@osdk/create-app.template.vue": "2.0.
|
|
42
|
-
"@osdk/create-app.template.vue.v2": "2.0.
|
|
43
|
-
"@osdk/generator-utils": "2.0.
|
|
33
|
+
"@osdk/create-app.template.next-static-export": "2.0.12",
|
|
34
|
+
"@osdk/create-app.template.react": "2.0.12",
|
|
35
|
+
"@osdk/create-app.template.next-static-export.v2": "2.0.12",
|
|
36
|
+
"@osdk/create-app.template.tutorial-todo-aip-app": "2.0.12",
|
|
37
|
+
"@osdk/create-app.template.react.beta": "2.0.12",
|
|
38
|
+
"@osdk/create-app.template.tutorial-todo-aip-app.beta": "2.0.12",
|
|
39
|
+
"@osdk/create-app.template.tutorial-todo-app": "2.0.12",
|
|
40
|
+
"@osdk/create-app.template.tutorial-todo-app.beta": "2.0.12",
|
|
41
|
+
"@osdk/create-app.template.vue": "2.0.12",
|
|
42
|
+
"@osdk/create-app.template.vue.v2": "2.0.12",
|
|
43
|
+
"@osdk/generator-utils": "2.0.12",
|
|
44
|
+
"@osdk/monorepo.api-extractor": "~0.0.0",
|
|
44
45
|
"@osdk/monorepo.tsconfig": "~0.0.0",
|
|
45
|
-
"@osdk/monorepo.tsup": "~0.0.0"
|
|
46
|
-
"@osdk/monorepo.api-extractor": "~0.0.0"
|
|
46
|
+
"@osdk/monorepo.tsup": "~0.0.0"
|
|
47
47
|
},
|
|
48
48
|
"publishConfig": {
|
|
49
49
|
"access": "public"
|