diff --git a/.playwright-mcp/dcrouter-scrollbar-issue.png b/.playwright-mcp/dcrouter-scrollbar-issue.png deleted file mode 100644 index 923213c..0000000 Binary files a/.playwright-mcp/dcrouter-scrollbar-issue.png and /dev/null differ diff --git a/.playwright-mcp/page-2026-02-01T23-10-23-737Z.png b/.playwright-mcp/page-2026-02-01T23-10-23-737Z.png deleted file mode 100644 index 6f4f4e8..0000000 Binary files a/.playwright-mcp/page-2026-02-01T23-10-23-737Z.png and /dev/null differ diff --git a/.playwright-mcp/page-2026-02-01T23-11-19-449Z.png b/.playwright-mcp/page-2026-02-01T23-11-19-449Z.png deleted file mode 100644 index 6f4f4e8..0000000 Binary files a/.playwright-mcp/page-2026-02-01T23-11-19-449Z.png and /dev/null differ diff --git a/.playwright-mcp/page-2026-02-01T23-12-03-126Z.png b/.playwright-mcp/page-2026-02-01T23-12-03-126Z.png deleted file mode 100644 index 923213c..0000000 Binary files a/.playwright-mcp/page-2026-02-01T23-12-03-126Z.png and /dev/null differ diff --git a/.playwright-mcp/page-2026-02-01T23-12-15-576Z.png b/.playwright-mcp/page-2026-02-01T23-12-15-576Z.png deleted file mode 100644 index 923213c..0000000 Binary files a/.playwright-mcp/page-2026-02-01T23-12-15-576Z.png and /dev/null differ diff --git a/changelog.md b/changelog.md index 6420977..e1e3ac7 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,11 @@ # Changelog +## 2026-02-12 - 5.0.3 - fix(packaging) +add files whitelist to package.json and remove Playwright-generated screenshots + +- Add a "files" array to package.json to control published package contents (includes ts/, ts_web/, dist/, dist_*/**, dist_ts/, dist_ts_web/, assets/, cli.js, npmextra.json, readme.md). +- Remove multiple .playwright-mcp/*.png screenshot files (clean up Playwright test artifacts and reduce repository noise/size). + ## 2026-02-12 - 5.0.2 - fix(docs) update documentation and packaging configuration: document smartmta/smartdns integrations, adjust API method names, and add release registry info diff --git a/package.json b/package.json index f1dc359..dfb37d0 100644 --- a/package.json +++ b/package.json @@ -93,5 +93,17 @@ "puppeteer" ] }, - "packageManager": "pnpm@10.11.0" + "packageManager": "pnpm@10.11.0", + "files": [ + "ts/**/*", + "ts_web/**/*", + "dist/**/*", + "dist_*/**/*", + "dist_ts/**/*", + "dist_ts_web/**/*", + "assets/**/*", + "cli.js", + "npmextra.json", + "readme.md" + ] } diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index e3a6d02..f53629e 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@serve.zone/dcrouter', - version: '5.0.2', + version: '5.0.3', description: 'A multifaceted routing service handling mail and SMS delivery functions.' } diff --git a/ts_web/00_commitinfo_data.ts b/ts_web/00_commitinfo_data.ts index e3a6d02..f53629e 100644 --- a/ts_web/00_commitinfo_data.ts +++ b/ts_web/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@serve.zone/dcrouter', - version: '5.0.2', + version: '5.0.3', description: 'A multifaceted routing service handling mail and SMS delivery functions.' }