forgeos 0.1.0-alpha.32 → 0.1.0-alpha.33

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/AGENTS.md CHANGED
@@ -1,4 +1,4 @@
1
- // @forge-generated generator=0.1.0-alpha.32 input=26469f4d84697cd1397a4a6726dff71ec50e70270a82b3ea4c84c75f25ac5f58 content=721818a6f9a664aa898092d4aa5cd68cbbd8ad6e150c7d3ad3ef785a2e3fcf53
1
+ // @forge-generated generator=0.1.0-alpha.33 input=618472d83d84f1f735eeaaec13559692c94a492c7f592b20882b5ebac7a1c378 content=721818a6f9a664aa898092d4aa5cd68cbbd8ad6e150c7d3ad3ef785a2e3fcf53
2
2
  # AGENTS.md
3
3
 
4
4
  <!-- forge-generated:start -->
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # forgeos
2
2
 
3
+ ## 0.1.0-alpha.33
4
+
5
+ ### Patch Changes
6
+
7
+ - Fix the Nuxt template smoke by adding the explicit `vue-tsc` dev dependency
8
+ required by `nuxt typecheck`, so newly scaffolded `nuxt-web` apps can run
9
+ `npm run typecheck` after install without manual package repair.
10
+
3
11
  ## 0.1.0-alpha.32
4
12
 
5
13
  ### Patch Changes
package/docs/changelog.md CHANGED
@@ -6,6 +6,12 @@ The canonical source file in the repository is `CHANGELOG.md`.
6
6
 
7
7
  ## Unreleased
8
8
 
9
+ ## 0.1.0-alpha.33
10
+
11
+ - Fixed the Nuxt template smoke by adding the explicit `vue-tsc` dev
12
+ dependency required by `nuxt typecheck`, so newly scaffolded `nuxt-web` apps
13
+ can run `npm run typecheck` after install without manual package repair.
14
+
9
15
  ## 0.1.0-alpha.32
10
16
 
11
17
  - Accepted `create-forgeos-app --git` as a supported/no-op compatibility flag
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "forgeos",
3
- "version": "0.1.0-alpha.32",
3
+ "version": "0.1.0-alpha.33",
4
4
  "description": "Agent-native application framework and compiler for building Forge apps without a mandatory dashboard.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -1 +1 @@
1
- {"defaultProvider":"local","diagnostics":[],"env":{"deployEnv":"FORGE_DEPLOY_ENV","deployId":"FORGE_DEPLOY_ID","publicReleaseId":"NEXT_PUBLIC_FORGE_RELEASE_ID","releaseId":"FORGE_RELEASE_ID"},"gitSha":"unknown","optionalProviders":["local","sentry-compatible","sentry","glitchtip","bugsink","otel","custom"],"packageName":"forgeos","packageVersion":"0.1.0-alpha.32","releaseId":"forgeos@0.1.0-alpha.32+unknown","schemaVersion":"0.1.0"}
1
+ {"defaultProvider":"local","diagnostics":[],"env":{"deployEnv":"FORGE_DEPLOY_ENV","deployId":"FORGE_DEPLOY_ID","publicReleaseId":"NEXT_PUBLIC_FORGE_RELEASE_ID","releaseId":"FORGE_RELEASE_ID"},"gitSha":"unknown","optionalProviders":["local","sentry-compatible","sentry","glitchtip","bugsink","otel","custom"],"packageName":"forgeos","packageVersion":"0.1.0-alpha.33","releaseId":"forgeos@0.1.0-alpha.33+unknown","schemaVersion":"0.1.0"}
@@ -1,4 +1,4 @@
1
- // @forge-generated generator=0.1.0-alpha.32 input=26469f4d84697cd1397a4a6726dff71ec50e70270a82b3ea4c84c75f25ac5f58 content=ba652b73917e09bcc803cfea91f38e1aa2563b17eacc60f6faaebdc949997e9a
1
+ // @forge-generated generator=0.1.0-alpha.33 input=618472d83d84f1f735eeaaec13559692c94a492c7f592b20882b5ebac7a1c378 content=2cfb24f552edc1fade82dc4abca3f6085ae94a0ac9ae70f5b0cffab11c1c3e7c
2
2
  export const releaseManifest = {
3
3
  "defaultProvider": "local",
4
4
  "diagnostics": [],
@@ -19,7 +19,7 @@ export const releaseManifest = {
19
19
  "custom"
20
20
  ],
21
21
  "packageName": "forgeos",
22
- "packageVersion": "0.1.0-alpha.32",
23
- "releaseId": "forgeos@0.1.0-alpha.32+unknown",
22
+ "packageVersion": "0.1.0-alpha.33",
23
+ "releaseId": "forgeos@0.1.0-alpha.33+unknown",
24
24
  "schemaVersion": "0.1.0"
25
25
  } as const;
@@ -1,3 +1,3 @@
1
- export const FORGEOS_VERSION = "0.1.0-alpha.32";
1
+ export const FORGEOS_VERSION = "0.1.0-alpha.33";
2
2
  export const GENERATOR_VERSION = FORGEOS_VERSION;
3
3
  export const CLI_VERSION = FORGEOS_VERSION;
@@ -12,6 +12,7 @@
12
12
  "vue": "^3.5.38"
13
13
  },
14
14
  "devDependencies": {
15
- "typescript": "^5.7.3"
15
+ "typescript": "^5.7.3",
16
+ "vue-tsc": "^3.3.5"
16
17
  }
17
18
  }
@@ -1,3 +1,6 @@
1
1
  {
2
- "extends": "./.nuxt/tsconfig.json"
2
+ "extends": "./.nuxt/tsconfig.json",
3
+ "compilerOptions": {
4
+ "allowImportingTsExtensions": true
5
+ }
3
6
  }