Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ab26281c03 | |||
| 73c85f0623 | |||
| 290ff93c1e | |||
| 32b024a8fd |
13
changelog.md
13
changelog.md
@@ -1,5 +1,18 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 2025-08-24 - 2.0.2 - fix(packaging)
|
||||||
|
Update package metadata: add exports, mark package public; clean up README contributing section
|
||||||
|
|
||||||
|
- Add an exports entry in package.json pointing to ./dist_ts/index.js for proper ESM exports resolution
|
||||||
|
- Mark package as public (private: false) and remove legacy main/typings fields
|
||||||
|
- Remove the Contributing section and example contributor workflow from README
|
||||||
|
|
||||||
|
## 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)
|
## 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.
|
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.
|
||||||
|
|
||||||
|
|||||||
@@ -1,10 +1,11 @@
|
|||||||
{
|
{
|
||||||
"name": "@push.rocks/smartipc",
|
"name": "@push.rocks/smartipc",
|
||||||
"version": "2.0.0",
|
"version": "2.0.2",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "A library for node inter process communication, providing an easy-to-use API for IPC.",
|
"description": "A library for node inter process communication, providing an easy-to-use API for IPC.",
|
||||||
"main": "dist/index.js",
|
"exports": {
|
||||||
"typings": "dist/index.d.ts",
|
".": "./dist_ts/index.js"
|
||||||
|
},
|
||||||
"author": "Lossless GmbH",
|
"author": "Lossless GmbH",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
18
readme.md
18
readme.md
@@ -449,24 +449,6 @@ SmartIPC uses a layered architecture for maximum flexibility:
|
|||||||
| Message Size Limits | ✅ | ❌ | ✅ | |
|
| Message Size Limits | ✅ | ❌ | ✅ | |
|
||||||
| Type Safety | ✅ | ❌ | ❌ | |
|
| Type Safety | ✅ | ❌ | ❌ | |
|
||||||
|
|
||||||
## Contributing
|
|
||||||
|
|
||||||
We welcome contributions! Please see our [Contributing Guide](CONTRIBUTING.md) for details.
|
|
||||||
|
|
||||||
```bash
|
|
||||||
# Clone the repository
|
|
||||||
git clone https://code.foss.global/push.rocks/smartipc.git
|
|
||||||
|
|
||||||
# Install dependencies
|
|
||||||
pnpm install
|
|
||||||
|
|
||||||
# Run tests
|
|
||||||
pnpm test
|
|
||||||
|
|
||||||
# Build
|
|
||||||
pnpm build
|
|
||||||
```
|
|
||||||
|
|
||||||
## Support
|
## Support
|
||||||
|
|
||||||
- 📖 [Documentation](https://code.foss.global/push.rocks/smartipc)
|
- 📖 [Documentation](https://code.foss.global/push.rocks/smartipc)
|
||||||
|
|||||||
@@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@push.rocks/smartipc',
|
name: '@push.rocks/smartipc',
|
||||||
version: '2.0.0',
|
version: '2.0.2',
|
||||||
description: 'A library for node inter process communication, providing an easy-to-use API for IPC.'
|
description: 'A library for node inter process communication, providing an easy-to-use API for IPC.'
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user