@warpgogol/forge 2.4.1 → 2.4.3
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/package.json +12 -3
- package/profiles/godot-csharp.yaml +44 -0
package/package.json
CHANGED
|
@@ -1,11 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@warpgogol/forge",
|
|
3
|
-
"version": "2.4.
|
|
3
|
+
"version": "2.4.3",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"description": "Framework for documenting and implementing ideas — RFC/ADR governance, skills, and project bootstrapping.",
|
|
8
|
-
"keywords": [
|
|
8
|
+
"keywords": [
|
|
9
|
+
"rfc",
|
|
10
|
+
"adr",
|
|
11
|
+
"governance",
|
|
12
|
+
"skills",
|
|
13
|
+
"ai-agent",
|
|
14
|
+
"documentation",
|
|
15
|
+
"framework"
|
|
16
|
+
],
|
|
9
17
|
"homepage": "https://warpgogol.com",
|
|
10
18
|
"repository": {
|
|
11
19
|
"type": "git",
|
|
@@ -298,5 +306,6 @@
|
|
|
298
306
|
"default": "./dist/os/program/program.module.js"
|
|
299
307
|
}
|
|
300
308
|
}
|
|
301
|
-
}
|
|
309
|
+
},
|
|
310
|
+
"packageManager": "pnpm@11.10.0"
|
|
302
311
|
}
|
|
@@ -171,6 +171,50 @@ workspace:
|
|
|
171
171
|
"geequla.godot-tools"
|
|
172
172
|
]
|
|
173
173
|
}
|
|
174
|
+
- path: .vscode/tasks.json
|
|
175
|
+
content: |
|
|
176
|
+
{
|
|
177
|
+
"version": "2.0.0",
|
|
178
|
+
"tasks": [
|
|
179
|
+
{
|
|
180
|
+
"label": "build",
|
|
181
|
+
"command": "dotnet",
|
|
182
|
+
"type": "process",
|
|
183
|
+
"args": ["build", "${workspaceFolder}/apps/__PROJECT_NAME__/Game.csproj"],
|
|
184
|
+
"problemMatcher": "$mscompile",
|
|
185
|
+
"group": { "kind": "build", "isDefault": true }
|
|
186
|
+
}
|
|
187
|
+
]
|
|
188
|
+
}
|
|
189
|
+
- path: .vscode/launch.json
|
|
190
|
+
content: |
|
|
191
|
+
{
|
|
192
|
+
"version": "0.2.0",
|
|
193
|
+
"configurations": [
|
|
194
|
+
{
|
|
195
|
+
"name": "Play",
|
|
196
|
+
"type": "coreclr",
|
|
197
|
+
"request": "launch",
|
|
198
|
+
"preLaunchTask": "build",
|
|
199
|
+
"program": "${workspaceFolder}/.godot-bin/godot",
|
|
200
|
+
"args": ["--path", "${workspaceFolder}/apps/__PROJECT_NAME__"],
|
|
201
|
+
"cwd": "${workspaceFolder}",
|
|
202
|
+
"console": "internalConsole",
|
|
203
|
+
"stopAtEntry": false
|
|
204
|
+
},
|
|
205
|
+
{
|
|
206
|
+
"name": "Play (PATH Godot)",
|
|
207
|
+
"type": "coreclr",
|
|
208
|
+
"request": "launch",
|
|
209
|
+
"preLaunchTask": "build",
|
|
210
|
+
"program": "godot",
|
|
211
|
+
"args": ["--path", "${workspaceFolder}/apps/__PROJECT_NAME__"],
|
|
212
|
+
"cwd": "${workspaceFolder}",
|
|
213
|
+
"console": "internalConsole",
|
|
214
|
+
"stopAtEntry": false
|
|
215
|
+
}
|
|
216
|
+
]
|
|
217
|
+
}
|
|
174
218
|
- path: .github/workflows/ci.yml
|
|
175
219
|
content: |
|
|
176
220
|
name: CI
|