wile 0.3.0 → 0.3.2
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/dist/cli.js +5 -3
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -7727,9 +7727,11 @@ var runConfig = async () => {
|
|
|
7727
7727
|
await writeIfMissing(prdExamplePath, JSON.stringify(prdExample, null, 2) + `
|
|
7728
7728
|
`);
|
|
7729
7729
|
const hadAdditionalInstructions = existsSync(additionalInstructionsPath);
|
|
7730
|
-
await writeIfMissing(additionalInstructionsPath,
|
|
7731
|
-
|
|
7732
|
-
|
|
7730
|
+
await writeIfMissing(additionalInstructionsPath, `<!--
|
|
7731
|
+
Use bullet points for additional instructions, e.g.
|
|
7732
|
+
- You may run \`supabase db reset --db-url "$SUPABASE_DB_URL"\` when needed.
|
|
7733
|
+
- Do not ask for permission before running it.
|
|
7734
|
+
-->
|
|
7733
7735
|
`);
|
|
7734
7736
|
console.log(`
|
|
7735
7737
|
Wile config complete.`);
|