@comfanion/workflow 4.38.1-dev.13 → 4.38.1-dev.14
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/bin/cli.js +7 -0
- package/package.json +1 -1
- package/src/build-info.json +2 -2
- package/src/opencode/gitignore +28 -0
package/bin/cli.js
CHANGED
|
@@ -373,6 +373,13 @@ program
|
|
|
373
373
|
// Copy .opencode structure (fresh, no old files)
|
|
374
374
|
await fs.copy(OPENCODE_SRC, targetDir);
|
|
375
375
|
|
|
376
|
+
// Rename "gitignore" → ".gitignore" (npm strips dotfiles from packages)
|
|
377
|
+
const gitignoreSrc = path.join(targetDir, 'gitignore');
|
|
378
|
+
const gitignoreDest = path.join(targetDir, '.gitignore');
|
|
379
|
+
if (await fs.pathExists(gitignoreSrc)) {
|
|
380
|
+
await fs.move(gitignoreSrc, gitignoreDest, { overwrite: true });
|
|
381
|
+
}
|
|
382
|
+
|
|
376
383
|
// Copy vectorizer source files
|
|
377
384
|
if (await fs.pathExists(VECTORIZER_SRC)) {
|
|
378
385
|
const newVectorizerDir = path.join(targetDir, 'vectorizer');
|
package/package.json
CHANGED
package/src/build-info.json
CHANGED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# ===========================================
|
|
2
|
+
# .opencode/.gitignore
|
|
3
|
+
# Auto-generated by @comfanion/workflow init
|
|
4
|
+
# ===========================================
|
|
5
|
+
|
|
6
|
+
# Dependencies (installed by vectorizer)
|
|
7
|
+
node_modules/
|
|
8
|
+
vectorizer/node_modules/
|
|
9
|
+
|
|
10
|
+
# Vectorizer cache (re-indexable, large binary files)
|
|
11
|
+
vectors/
|
|
12
|
+
|
|
13
|
+
# Build artifacts (regenerated by npm run build)
|
|
14
|
+
cli/src/
|
|
15
|
+
cli/node_modules/
|
|
16
|
+
cli/package-lock.json
|
|
17
|
+
|
|
18
|
+
# Lock files
|
|
19
|
+
bun.lock
|
|
20
|
+
package-lock.json
|
|
21
|
+
|
|
22
|
+
# Local caches (session-specific)
|
|
23
|
+
session-state.yaml
|
|
24
|
+
jira-cache.yaml
|
|
25
|
+
.version-check-cache.json
|
|
26
|
+
|
|
27
|
+
# MCP user config (personal selections)
|
|
28
|
+
mcp/enabled.yaml
|