pinokiod 3.307.0 → 3.308.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/kernel/environment.js +5 -0
- package/package.json +1 -1
package/kernel/environment.js
CHANGED
|
@@ -587,6 +587,11 @@ const init = async (options, kernel) => {
|
|
|
587
587
|
await fs.promises.writeFile(destination, rendered_recipe)
|
|
588
588
|
}
|
|
589
589
|
}
|
|
590
|
+
await fs.promises.writeFile(path.resolve(root, ".geminiignore"), `ENVIRONMENT
|
|
591
|
+
!/logs
|
|
592
|
+
!/GEMINI.md
|
|
593
|
+
!/SPEC.md
|
|
594
|
+
!/app`)
|
|
590
595
|
}
|
|
591
596
|
|
|
592
597
|
const gitDir = path.resolve(root, ".git")
|