Skip to content
Merged
Show file tree
Hide file tree
Changes from 12 commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
e6ee2a8
test(sync): cover Applied changes report grouping and change-type labels
willmruzek Apr 21, 2026
b3a9a41
feat(sync)!: hash outputs in manifest v3 and skip unchanged sync work
willmruzek Apr 21, 2026
59e07bb
perf(sync): memoize directory content hash per sourceDir
Copilot Apr 21, 2026
f29c472
refactor(sync): rename directory hash cache variable
Copilot Apr 21, 2026
0ffdefa
Merge remote-tracking branch 'origin/main' into fix/dont-show-updated
willmruzek Apr 23, 2026
bc6bb13
Merge branch 'fix/dont-show-updated' of github.com:willmruzek/dry-ai …
willmruzek Apr 23, 2026
017009c
feat(sync): detect unchanged outputs from disk instead of manifest ha…
willmruzek Apr 24, 2026
1fd2a9d
Update tests/commands/sync.test.ts
willmruzek Apr 24, 2026
60f19e3
Update tests/commands/sync.test.ts
willmruzek Apr 24, 2026
4ab8e43
Update src/lib/sync.ts
willmruzek Apr 24, 2026
b870adf
fix(sync): recover manifest paths for cleanup when the file is non-ca…
willmruzek Apr 24, 2026
d1e1bb8
Merge branch 'fix/dont-show-updated' of github.com:willmruzek/dry-ai …
willmruzek Apr 24, 2026
f9c96ba
docs: Update src/lib/sync.ts
willmruzek Apr 24, 2026
92079ff
docs(sync): clarify manifest fallback cleanup warnings
Copilot Apr 24, 2026
72a15f1
docs(sync): tighten fallback warning wording
Copilot Apr 24, 2026
e47f246
test(sync): decouple fixtures from production agent and manifest exports
willmruzek Apr 24, 2026
ca1ec5b
fix(sync): warn when strict-invalid manifest has no output rows
Copilot Apr 24, 2026
58d90e0
test: update tests/commands/sync.test.ts
willmruzek Apr 24, 2026
eb3f6d5
ci: drop commitlint from pack job dependencies
willmruzek Apr 24, 2026
15fc7bb
Merge branch 'fix/dont-show-updated' of github.com:willmruzek/dry-ai …
willmruzek Apr 24, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,14 @@ export default [
rules: {
// Toolkit `recommended` prefers `interface`; this project prefers `type`.
'@typescript-eslint/consistent-type-definitions': ['error', 'type'],
'@typescript-eslint/no-unused-vars': [
'error',
{
argsIgnorePattern: '^_',
varsIgnorePattern: '^_',
caughtErrorsIgnorePattern: '^_',
},
],
},
},
{
Expand Down
Loading
Loading