agent-flutter 0.1.8 → 0.1.9
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 -1
- package/package.json +1 -1
- package/src/cli.js +1 -1
package/README.md
CHANGED
|
@@ -70,7 +70,7 @@ npm run release:major
|
|
|
70
70
|
|
|
71
71
|
## Installed files
|
|
72
72
|
|
|
73
|
-
- Workspace utilities: `
|
|
73
|
+
- Workspace utilities: `tool/`, `tools/`, `.vscode/tasks.json`
|
|
74
74
|
- Trae: `.trae/` (skills/rules/scripts)
|
|
75
75
|
- Codex: `.codex/` (skills/rules/scripts) + `AGENTS.md`
|
|
76
76
|
- Cursor: `.cursor/skills/`, `.cursor/rules/shared/`, `.cursor/scripts/`, `.cursor/rules/agent-flutter.mdc`
|
package/package.json
CHANGED
package/src/cli.js
CHANGED
|
@@ -142,7 +142,7 @@ async function applyPack({
|
|
|
142
142
|
mode,
|
|
143
143
|
}) {
|
|
144
144
|
const verb = mode === 'sync' ? 'Synced' : 'Installed';
|
|
145
|
-
const sharedUtilityDirs = ['
|
|
145
|
+
const sharedUtilityDirs = ['tool', 'tools'];
|
|
146
146
|
const syncDirectory = async ({ sourceDir, destinationDir, label }) => {
|
|
147
147
|
if ((await exists(destinationDir)) && !force) {
|
|
148
148
|
console.log(`Skipped ${label} (exists): ${destinationDir}`);
|