fix(deps/ts_plugins): Update @types/node dependency and adjust rxjs operator exports ordering

This commit is contained in:
Philipp Kunz 2025-04-25 08:48:08 +00:00
parent a0df30adf1
commit 23c6e17536
5 changed files with 6958 additions and 4229 deletions

137
changelog.md Normal file
View File

@ -0,0 +1,137 @@
# Changelog
## 2025-04-25 - 3.0.9 - fix(deps/ts_plugins)
Update @types/node dependency and adjust rxjs operator exports ordering
- Upgraded @types/node from ^20.8.10 to ^22.15.2 in package.json
- Reordered rxjs operator imports and exports in ts/smartrx.plugins.rxjs.ts for improved clarity
## 2024-05-29 - 3.0.8 - configuration updates
Updated project description and configuration files.
- Updated description.
- Revised tsconfig settings (2024-04-14 and 2024-04-01).
- Updated npmextra.json githost entries (2024-04-01 and 2024-03-30).
## 2023-11-04 - 3.0.7 - core
Fixed core functionality.
- Applied core fixes.
## 2023-11-01 - 3.0.6 - core
Fixed core functionality.
- Applied core fixes.
## 2023-07-24 - 3.0.5 - core
Fixed core functionality.
- Applied core fixes.
## 2023-07-24 - 3.0.4 - core
Fixed core functionality.
- Applied core fixes.
## 2023-07-24 - 3.0.3 - core
Fixed core functionality.
- Applied core fixes.
## 2023-07-12 - 3.0.2 - core
Fixed core functionality and organization scheme.
- Applied core fixes.
- Switched to new organization scheme (commit dated 2023-07-10).
## 2023-06-11 - 3.0.1 - core
Fixed core functionality.
- Applied core fixes.
## 2023-06-10 - 3.0.0 - core
Fixed core functionality.
- Applied core fixes.
---
## 2022-08-05 - 2.0.26 to 2.0.25 - core
Included a breaking change alongside core fixes.
- BREAKING CHANGE: Switched to ESM.
- Applied core fixes.
## 2022-01-24 - 2.0.24 to 2.0.19 - core
Consolidated several minor core fixes.
- Applied multiple core update fixes.
## 2020-09-24 - 2.0.18 - core
Fixed core functionality.
- Applied core fix.
## 2020-07-12 - 2.0.17 - core
Fixed core functionality.
- Applied core fix.
## 2020-06-26 - 2.0.16 to 2.0.15 - core
Fixed core functionality.
- Applied core fixes.
## 2020-05-27 - 2.0.14 to 2.0.6 - core
Fixed core functionality across several releases.
- Applied core fixes.
## 2020-05-26 - 2.0.5 - core
Fixed core functionality.
- Applied core fix.
## 2019-09-10 - 2.0.4 to 2.0.3 - core
Fixed core functionality.
- Applied core fixes.
## 2018-12-10 to 2018-11-23 - 2.0.2 to 2.0.1 - core & dependencies
Fixed core functionality and updated dependencies.
- Applied core fixes (2.0.2).
- Updated dependencies (2.0.1 fix).
## 2018-10-10 - 2.0.0 - core
Fixed core functionality.
- Applied core fix.
---
## 2018-10-10 - 1.0.5 - scope change
Introduced a breaking change in package scope.
- BREAKING CHANGE: Switched to the @pushrocks scope.
## 2017-11-01 - 1.0.4 - testing improvements
Enhanced test quality and intake functionality.
- Improved tests.
- Enabled working intake.
## 2017-10-30 - 1.0.3 - documentation
Updated project documentation.
- Revised docs.
## 2017-10-30 - 1.0.2 - documentation
Enhanced project information.
- Added README.
## 2017-10-26 - 1.0.1 - observable feature
Introduced observability features.
- Added observable functionality.

View File

@ -19,7 +19,7 @@
"@gitzone/tsrun": "^1.2.44",
"@gitzone/tstest": "^1.0.77",
"@push.rocks/tapbundle": "^5.0.15",
"@types/node": "^20.8.10"
"@types/node": "^22.15.2"
},
"dependencies": {
"@push.rocks/smartpromise": "^4.0.2",
@ -54,5 +54,6 @@
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/smartrx.git"
}
}
},
"packageManager": "pnpm@10.7.0+sha512.6b865ad4b62a1d9842b61d674a393903b871d9244954f652b8842c2b553c72176b278f64c463e52d40fff8aba385c235c8c9ecf5cc7de4fd78b8bb6d49633ab6"
}

11028
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@ -1,8 +1,8 @@
/**
* autocreated commitinfo by @pushrocks/commitinfo
* autocreated commitinfo by @push.rocks/commitinfo
*/
export const commitinfo = {
name: '@push.rocks/smartrx',
version: '3.0.8',
description: 'smart wrapper for rxjs'
version: '3.0.9',
description: 'A smart wrapper for rxjs to manage and extend observables.'
}

View File

@ -4,14 +4,17 @@ export { Observable, Subject, fromEvent, ReplaySubject, Subscription, from, of }
export type { Observer } from 'rxjs';
import { startWith, takeUntil, map, debounce, debounceTime, throttleTime, filter } from 'rxjs/operators';
import { buffer, bufferCount, bufferTime, debounce, debounceTime, filter, map, startWith, takeUntil, throttleTime } from 'rxjs/operators';
export const ops = {
buffer,
bufferCount,
bufferTime,
debounce,
debounceTime,
filter,
map,
startWith,
takeUntil,
throttleTime,
filter,
throttleTime
};