wile 0.4.5 → 0.4.7
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.
|
@@ -98,7 +98,8 @@ After completing steps 1-8, check if ALL stories in `.wile/prd.json` have `passe
|
|
|
98
98
|
4. **Fix related files** - If typecheck requires changes in other files, make them (this is not scope creep)
|
|
99
99
|
5. **Be idempotent** - Use `IF NOT EXISTS` for migrations, check before creating files
|
|
100
100
|
6. **No interactive prompts** - Use `echo -e "\n\n\n" |` if a command might prompt
|
|
101
|
-
7. **NEVER commit node_modules, dist, or build artifacts** - .gitignore should already be set up
|
|
101
|
+
7. **NEVER commit node_modules, dist, or build artifacts** - .gitignore should already be set up at the start of the run
|
|
102
|
+
8. **Use acceptance criteria as verification steps** - Run commands to confirm outputs or write tests that fail if the feature is removed
|
|
102
103
|
|
|
103
104
|
## Common Patterns
|
|
104
105
|
|