code-foundry 0.27.12 → 0.27.13
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 +7 -0
- package/package.json +1 -1
- package/src/commands/sync.mjs +4 -0
- package/src/templates/gitignore +77 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.27.13](https://github.com/0xPlayerOne/code-foundry/compare/v0.27.12...v0.27.13) (2026-07-29)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **sync:** package the gitignore template ([e65c63d](https://github.com/0xPlayerOne/code-foundry/commit/e65c63dcb09a623d5ce0b55f734bbe73719c72f2))
|
|
9
|
+
|
|
3
10
|
## [0.27.12](https://github.com/0xPlayerOne/code-foundry/compare/v0.27.11...v0.27.12) (2026-07-29)
|
|
4
11
|
|
|
5
12
|
|
package/package.json
CHANGED
package/src/commands/sync.mjs
CHANGED
|
@@ -144,6 +144,10 @@ function shouldInclude(file, languages, features) {
|
|
|
144
144
|
|
|
145
145
|
/** @param {string} source @param {string} file */
|
|
146
146
|
function sourcePath(source, file) {
|
|
147
|
+
if (file === '.gitignore') {
|
|
148
|
+
const rootTemplate = join(source, file)
|
|
149
|
+
return existsSync(rootTemplate) ? rootTemplate : join(source, 'src/templates/gitignore')
|
|
150
|
+
}
|
|
147
151
|
if (file.startsWith('.github/workflows/')) {
|
|
148
152
|
const name = file.slice('.github/workflows/'.length, -4)
|
|
149
153
|
return join(source, '.github/workflows', `${name}_self-ci.yml`)
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
# Operating system
|
|
2
|
+
.DS_Store
|
|
3
|
+
Thumbs.db
|
|
4
|
+
.Trashes
|
|
5
|
+
|
|
6
|
+
# Secrets and local environment
|
|
7
|
+
.env
|
|
8
|
+
.env.*
|
|
9
|
+
!.env.example
|
|
10
|
+
*.pem
|
|
11
|
+
*.key
|
|
12
|
+
|
|
13
|
+
# JavaScript and TypeScript
|
|
14
|
+
node_modules/
|
|
15
|
+
.pnp/
|
|
16
|
+
.pnp.js
|
|
17
|
+
.turbo/
|
|
18
|
+
*.tsbuildinfo
|
|
19
|
+
next-env.d.ts
|
|
20
|
+
|
|
21
|
+
# Python
|
|
22
|
+
.venv/
|
|
23
|
+
venv/
|
|
24
|
+
__pycache__/
|
|
25
|
+
*.py[cod]
|
|
26
|
+
.pytest_cache/
|
|
27
|
+
.ruff_cache/
|
|
28
|
+
.mypy_cache/
|
|
29
|
+
|
|
30
|
+
# Rust
|
|
31
|
+
target/
|
|
32
|
+
|
|
33
|
+
# Build and test output
|
|
34
|
+
dist/
|
|
35
|
+
build/
|
|
36
|
+
out/
|
|
37
|
+
coverage/
|
|
38
|
+
htmlcov/
|
|
39
|
+
.coverage*
|
|
40
|
+
.next/
|
|
41
|
+
artifacts/
|
|
42
|
+
cache/
|
|
43
|
+
!.github/actions/cache/
|
|
44
|
+
!.github/actions/cache/action.yml
|
|
45
|
+
typechain/
|
|
46
|
+
coverage.json
|
|
47
|
+
tests/.bin/
|
|
48
|
+
**/.app/
|
|
49
|
+
|
|
50
|
+
# Logs and temporary files
|
|
51
|
+
*.log
|
|
52
|
+
*.tmp
|
|
53
|
+
*.pid
|
|
54
|
+
npm-debug.log*
|
|
55
|
+
yarn-debug.log*
|
|
56
|
+
pnpm-debug.log*
|
|
57
|
+
|
|
58
|
+
# Editors, agents, and local tools
|
|
59
|
+
.claude/
|
|
60
|
+
.kilo/
|
|
61
|
+
.codex/
|
|
62
|
+
.cursor/
|
|
63
|
+
.windsurf/
|
|
64
|
+
.vscode/
|
|
65
|
+
.idea/
|
|
66
|
+
.zed/
|
|
67
|
+
.fleet/
|
|
68
|
+
.opencode/
|
|
69
|
+
.kluster/
|
|
70
|
+
.direnv/
|
|
71
|
+
.envrc
|
|
72
|
+
.vercel/
|
|
73
|
+
mise.local.toml
|
|
74
|
+
.mise.local.toml
|
|
75
|
+
mise.local.lock
|
|
76
|
+
.mise.local.lock
|
|
77
|
+
*.code-workspace
|