Skip to content

Commit 4a6c221

Browse files
GeneAIclaude
authored andcommitted
fix: Exclude node_modules from package build (v2.2.1)
MANIFEST.in was including examples/wizard-dashboard/node_modules/ which made the package extremely large. Added exclusions for: - node_modules directories - dist and .next build artifacts 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <[email protected]>
1 parent 8ea97d9 commit 4a6c221

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

MANIFEST.in

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,13 @@ exclude COMMERCIAL_READINESS.md
4646
exclude QUALITY_REVIEW.md
4747
exclude COMMERCIAL_ROADMAP.md
4848

49+
# Exclude node_modules and frontend build artifacts
50+
prune examples/wizard-dashboard/node_modules
51+
prune examples/wizard-dashboard/dist
52+
prune examples/wizard-dashboard/.next
53+
global-exclude node_modules
54+
recursive-exclude examples/wizard-dashboard/node_modules *
55+
4956
# Exclude unnecessary files
5057
global-exclude *.pyc
5158
global-exclude *.pyo

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "empathy-framework"
7-
version = "2.2.0"
7+
version = "2.2.1"
88
description = "AI collaboration framework with persistent memory, anticipatory intelligence, and multi-agent orchestration"
99
readme = {file = "README.md", content-type = "text/markdown"}
1010
requires-python = ">=3.10"

0 commit comments

Comments
 (0)