fix(npm): Remove .npmrc to avoid committing npm registry configuration

This commit is contained in:
2025-08-24 16:39:53 +00:00
parent 4338fba451
commit 32b024a8fd
3 changed files with 7 additions and 2 deletions

View File

@@ -1,5 +1,11 @@
# Changelog
## 2025-08-24 - 2.0.1 - fix(npm)
Remove .npmrc to avoid committing npm registry configuration
- Deleted .npmrc which contained a hardcoded registry (https://registry.npmjs.org/).
- Prevents accidental leakage of local npm configuration into the repository and avoids affecting CI/publish behavior.
## 2025-08-24 - 2.0.0 - BREAKING CHANGE(core)
Refactor core IPC: replace node-ipc with native transports and add IpcChannel / IpcServer / IpcClient with heartbeat, reconnection, request/response and pub/sub. Update tests and documentation.