code-foundry 0.31.10 → 0.31.12
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/.prettierignore +5 -0
- package/CHANGELOG.md +14 -0
- package/package.json +3 -1
- package/ruff.toml +11 -0
package/.prettierignore
ADDED
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.31.12](https://github.com/0xPlayerOne/code-foundry/compare/v0.31.11...v0.31.12) (2026-07-30)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **package:** include ruff baseline ([645f63e](https://github.com/0xPlayerOne/code-foundry/commit/645f63e9e66d67338345bb3eb14949543f97f89b))
|
|
9
|
+
|
|
10
|
+
## [0.31.11](https://github.com/0xPlayerOne/code-foundry/compare/v0.31.10...v0.31.11) (2026-07-30)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* **package:** include prettier ignore baseline ([4cf91e1](https://github.com/0xPlayerOne/code-foundry/commit/4cf91e1d0ec6b53e3751469937b44f903ef09466))
|
|
16
|
+
|
|
3
17
|
## [0.31.10](https://github.com/0xPlayerOne/code-foundry/compare/v0.31.9...v0.31.10) (2026-07-30)
|
|
4
18
|
|
|
5
19
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "code-foundry",
|
|
3
|
-
"version": "0.31.
|
|
3
|
+
"version": "0.31.12",
|
|
4
4
|
"description": "A fast, language-aware repository factory for agent-ready workflows, testing, security, and release automation.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "AGPL-3.0-or-later",
|
|
@@ -26,8 +26,10 @@
|
|
|
26
26
|
".gitignore",
|
|
27
27
|
"CHANGELOG.md",
|
|
28
28
|
"release-please-config.json",
|
|
29
|
+
"ruff.toml",
|
|
29
30
|
".mise.toml",
|
|
30
31
|
".prettierrc",
|
|
32
|
+
".prettierignore",
|
|
31
33
|
".env.example",
|
|
32
34
|
"AGENTS.md",
|
|
33
35
|
"LICENSE",
|