@cleocode/cleo 2026.3.0 → 2026.3.2-beta.1
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/README.md +1 -3
- package/dist/cli/index.js +5169 -3062
- package/dist/cli/index.js.map +4 -4
- package/dist/mcp/index.js +11935 -9729
- package/dist/mcp/index.js.map +4 -4
- package/drizzle/20260301175940_futuristic_eternity/migration.sql +5 -0
- package/drizzle/20260301175940_futuristic_eternity/snapshot.json +2608 -0
- package/drizzle/20260301180528_update-task-relations-check-constraint/migration.sql +21 -0
- package/drizzle/20260301180528_update-task-relations-check-constraint/snapshot.json +2608 -0
- package/package.json +4 -4
- package/templates/README.md +4 -4
- package/templates/cleo-gitignore +3 -11
- package/templates/git-hooks/pre-commit +1 -1
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
-- No-op: the reason column addition is handled by the subsequent table rebuild
|
|
2
|
+
-- migration (20260301180528_update-task-relations-check-constraint) which
|
|
3
|
+
-- recreates task_relations with all columns including reason.
|
|
4
|
+
-- This migration exists to maintain the drizzle snapshot chain integrity.
|
|
5
|
+
SELECT 1;
|