Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
14 changes: 0 additions & 14 deletions .madgerc

This file was deleted.

8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.19.1] - 2026-03-30

### Changed

- Migrate circular dependency checker from madge to dpdm. madge has stale indirect dependencies with known security vulnerabilities (brace-expansion ReDoS) that are not being addressed upstream. dpdm is actively maintained and uses TypeScript compiler API directly with a shallower dependency tree.
- Remove `.madgerc` config file (settings migrated to dpdm CLI options)
- Remove unused `check:deps:graph` script

## [1.19.0] - 2026-03-30

### Changed
Expand Down
7 changes: 3 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "create-ai-project",
"version": "1.19.0",
"version": "1.19.1",
"packageManager": "npm@10.8.2",
"description": "TypeScript boilerplate with skills and sub-agents for Claude Code. Prevents context exhaustion through role-based task splitting.",
"keywords": [
Expand Down Expand Up @@ -50,8 +50,7 @@
"check": "biome check src",
"check:fix": "biome check --write src",
"check:unused": "knip --include exports",
"check:deps": "madge --circular --extensions ts src",
"check:deps:graph": "madge --extensions ts --image graph.svg src",
"check:deps": "dpdm --no-warning --no-tree --exit-code circular:1 --ext .ts --exclude \"__tests__|.test.ts$|.spec.ts$\" --tsconfig ./tsconfig.json -T \"src/**/*.ts\"",
"check:code": "npm run check && npm run check:unused && npm run check:deps && npm run build",
"check:all": "npm run check:code && npm run test",
"cleanup:processes": "bash ./scripts/cleanup-test-processes.sh",
Expand All @@ -71,7 +70,7 @@
"husky": "^9.1.7",
"knip": "^5.0.0",
"lint-staged": "^16.1.0",
"madge": "^8.0.0",
"dpdm": "^4.0.0",
"tsc-alias": "^1.8.7",
"tsx": "^4.19.4",
"typescript": "^5.0.0",
Expand Down
Loading