@osdk/create-app 0.5.0 → 0.7.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.
@@ -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.5.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", {
339
+ const base = yargs__default.default(helpers.hideBin(args)).version("0.7.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", {
@@ -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.5.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", {
329
+ const base = yargs(hideBin(args)).version("0.7.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", {
@@ -1 +1 @@
1
- export declare const consola: import("consola/core").ConsolaInstance;
1
+ export declare const consola: import("consola").ConsolaInstance;
@@ -0,0 +1,6 @@
1
+ type: improvement
2
+ improvement:
3
+ description: Change template-next-static-export tsconfig.json target from es5 to
4
+ ES2020
5
+ links:
6
+ - https://github.com/palantir/osdk-ts/pull/108
@@ -0,0 +1,5 @@
1
+ type: improvement
2
+ improvement:
3
+ description: Bump TS and make writing test network mocks easier
4
+ links:
5
+ - https://github.com/palantir/osdk-ts/pull/120
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@osdk/create-app",
3
- "version": "0.5.0",
3
+ "version": "0.7.0",
4
4
  "description": "",
5
5
  "access": "public",
6
6
  "license": "Apache-2.0",
@@ -32,7 +32,7 @@
32
32
  "@types/yargs": "^17.0.29",
33
33
  "dir-compare": "^4.2.0",
34
34
  "tmp": "^0.2.1",
35
- "typescript": "^5.2.2"
35
+ "typescript": "^5.4.2"
36
36
  },
37
37
  "publishConfig": {
38
38
  "access": "public"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "compilerOptions": {
3
- "target": "es5",
3
+ "target": "ES2020",
4
4
  "lib": ["dom", "dom.iterable", "esnext"],
5
5
  "allowJs": true,
6
6
  "skipLibCheck": true,