@osdk/create-app 2.3.0-beta.9 → 2.4.0-beta.1

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 CHANGED
@@ -1,5 +1,7 @@
1
1
  # @osdk/create-app
2
2
 
3
+ ## 2.3.0-beta.10
4
+
3
5
  ## 2.3.0-beta.9
4
6
 
5
7
  ## 2.3.0-beta.8
@@ -20,6 +22,20 @@
20
22
 
21
23
  ## 2.3.0-beta.2
22
24
 
25
+ ## 2.2.0
26
+
27
+ ### Patch Changes
28
+
29
+ - 322c5bc: Simulated release
30
+ - 1444362: Read environment variables from index.html meta tags
31
+ - e75819c: Add comments to env files in templates
32
+ - 21e33a5: Upgrade consola to 3.4.0
33
+ - fa02507: Use options overload when initializing client in create-app templates and standardize formatting
34
+ - 770ec64: Drop Next.js templates
35
+ - 1d0e72a: Ensure tutorials are not shown by cli
36
+ - 889e84b: Release
37
+ - 317b555: Release
38
+
23
39
  ## 2.2.0-beta.23
24
40
 
25
41
  ## 2.2.0-beta.22
@@ -569,7 +569,7 @@ async function run({
569
569
  cwd: fileURLToPath(import.meta.url)
570
570
  });
571
571
  ourPackageJsonPath ? JSON.parse(fs2.readFileSync(ourPackageJsonPath, "utf-8")).version : void 0;
572
- const clientVersion = "2.3.0-beta.9";
572
+ const clientVersion = "2.4.0-beta.1";
573
573
  const templateContext = {
574
574
  project,
575
575
  foundryUrl,
@@ -645,7 +645,7 @@ async function run({
645
645
 
646
646
  // src/cli.ts
647
647
  async function cli(args = process.argv) {
648
- const base = yargs(hideBin(args)).version("2.3.0-beta.9").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", {
648
+ const base = yargs(hideBin(args)).version("2.4.0-beta.1").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", {
649
649
  type: "string",
650
650
  describe: "Project name to create"
651
651
  }).option("overwrite", {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@osdk/create-app",
3
- "version": "2.3.0-beta.9",
3
+ "version": "2.4.0-beta.1",
4
4
  "description": "",
5
5
  "access": "public",
6
6
  "license": "Apache-2.0",
@@ -38,18 +38,18 @@
38
38
  "redent": "^4.0.0",
39
39
  "tmp": "^0.2.3",
40
40
  "typescript": "~5.5.4",
41
- "@osdk/create-app.template.expo.v2": "2.3.0-beta.9",
42
- "@osdk/create-app.template.react": "2.3.0-beta.9",
43
- "@osdk/create-app.template.tutorial-todo-aip-app": "2.3.0-beta.9",
44
- "@osdk/create-app.template.tutorial-todo-aip-app.beta": "2.3.0-beta.9",
45
- "@osdk/create-app.template.react.beta": "2.3.0-beta.9",
46
- "@osdk/create-app.template.tutorial-todo-app.beta": "2.3.0-beta.9",
47
- "@osdk/create-app.template.tutorial-todo-app": "2.3.0-beta.9",
48
- "@osdk/create-app.template.vue": "2.3.0-beta.9",
49
- "@osdk/create-app.template.vue.v2": "2.3.0-beta.9",
50
- "@osdk/generator-utils": "2.3.0-beta.9",
51
- "@osdk/monorepo.api-extractor": "~0.2.0-beta.1",
52
- "@osdk/monorepo.tsconfig": "~0.2.0-beta.1"
41
+ "@osdk/create-app.template.expo.v2": "2.4.0-beta.1",
42
+ "@osdk/create-app.template.tutorial-todo-aip-app": "2.4.0-beta.1",
43
+ "@osdk/create-app.template.react.beta": "2.4.0-beta.1",
44
+ "@osdk/create-app.template.tutorial-todo-app": "2.4.0-beta.1",
45
+ "@osdk/create-app.template.tutorial-todo-aip-app.beta": "2.4.0-beta.1",
46
+ "@osdk/create-app.template.vue": "2.4.0-beta.1",
47
+ "@osdk/create-app.template.tutorial-todo-app.beta": "2.4.0-beta.1",
48
+ "@osdk/create-app.template.vue.v2": "2.4.0-beta.1",
49
+ "@osdk/create-app.template.react": "2.4.0-beta.1",
50
+ "@osdk/generator-utils": "2.4.0-beta.1",
51
+ "@osdk/monorepo.api-extractor": "~0.3.0-beta.1",
52
+ "@osdk/monorepo.tsconfig": "~0.3.0-beta.1"
53
53
  },
54
54
  "publishConfig": {
55
55
  "access": "public"