@warpgogol/forge 2.2.0 → 2.3.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/AGENTS.md +1 -1
- package/package.json +6 -3
- package/profiles/godot-csharp.yaml +20 -0
package/AGENTS.md
CHANGED
|
@@ -17,7 +17,7 @@ Packet 000 will add the portable `forge/program@1` control plane under `os/progr
|
|
|
17
17
|
|
|
18
18
|
| Module | Commands | Source |
|
|
19
19
|
| --- | --- | --- |
|
|
20
|
-
| `forgeCoreModule` | `create`, `doctor`, `upgrade`, `forge.agents.generate`, `scaffold`, `port.scaffold`, `skill.validate`, `skill.list`, `port.validate`, `profile.validate`, `dev`, `build`, `validate`, `pinned.validate`, `pinned.init`, `docs.archive` | `os/core/` |
|
|
20
|
+
| `forgeCoreModule` | `create`, `doctor`, `upgrade`, `forge.agents.generate`, `scaffold`, `port.scaffold`, `skill.validate`, `skill.list`, `port.validate`, `profile.validate`, `dev`, `build`, `validate`, `pinned.validate`, `pinned.init`, `package.health`, `docs.archive` | `os/core/` |
|
|
21
21
|
| `forgeRfcModule` | `rfc.list`, `rfc.validate`, `rfc.create`, etc. | `os/rfc/` |
|
|
22
22
|
| `forgeWorkflowModule` | `workflow.lint`, `workflow.list`, `workflow.amend.list` | `os/workflow/` |
|
|
23
23
|
| `forgeNamingModule` | `naming.convention.lint` | `os/naming/` |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@warpgogol/forge",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.3.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -156,11 +156,12 @@
|
|
|
156
156
|
"scripts": {
|
|
157
157
|
"build": "pnpm exec tsc -p tsconfig.json",
|
|
158
158
|
"build:check": "pnpm exec tsc -p tsconfig.json --noEmit",
|
|
159
|
-
"lint": "pnpm exec eslint src
|
|
159
|
+
"lint": "pnpm exec eslint \"src/**/*.ts\" \"os/**/*.ts\"",
|
|
160
160
|
"typecheck": "pnpm exec tsc -p tsconfig.json --noEmit",
|
|
161
161
|
"test": "vitest run --passWithNoTests",
|
|
162
162
|
"test:watch": "vitest",
|
|
163
|
-
"test:tarball:node24": "node test-fixtures/node24-consumer/smoke.mjs"
|
|
163
|
+
"test:tarball:node24": "node test-fixtures/node24-consumer/smoke.mjs",
|
|
164
|
+
"prepublishOnly": "pnpm exec tsc -p tsconfig.json"
|
|
164
165
|
},
|
|
165
166
|
"dependencies": {
|
|
166
167
|
"@aws-sdk/client-s3": "^3.700.0",
|
|
@@ -174,8 +175,10 @@
|
|
|
174
175
|
},
|
|
175
176
|
"devDependencies": {
|
|
176
177
|
"@types/node": "^24.0.0",
|
|
178
|
+
"eslint": "^10.8.0",
|
|
177
179
|
"fast-check": "^4.9.0",
|
|
178
180
|
"typescript": "^6.0.3",
|
|
181
|
+
"typescript-eslint": "8.65.0",
|
|
179
182
|
"vitest": "^4.1.10"
|
|
180
183
|
},
|
|
181
184
|
"engines": {
|
|
@@ -669,6 +669,26 @@ install:
|
|
|
669
669
|
firstWorkspace:
|
|
670
670
|
path: apps/my-game
|
|
671
671
|
files:
|
|
672
|
+
- path: package.json
|
|
673
|
+
content: |
|
|
674
|
+
{
|
|
675
|
+
"name": "my-game",
|
|
676
|
+
"version": "0.1.0",
|
|
677
|
+
"private": true,
|
|
678
|
+
"type": "module",
|
|
679
|
+
"scripts": {
|
|
680
|
+
"build:check": "pnpm exec tsc -p tsconfig.json --noEmit || true",
|
|
681
|
+
"test": "vitest run --passWithNoTests"
|
|
682
|
+
}
|
|
683
|
+
}
|
|
684
|
+
- path: tsconfig.json
|
|
685
|
+
content: |
|
|
686
|
+
{
|
|
687
|
+
"extends": "../tsconfig.base.json",
|
|
688
|
+
"compilerOptions": {
|
|
689
|
+
"outDir": "./dist"
|
|
690
|
+
}
|
|
691
|
+
}
|
|
672
692
|
- path: project.godot
|
|
673
693
|
content: |
|
|
674
694
|
; Engine configuration file.
|