Compare commits
10 Commits
Author | SHA1 | Date | |
---|---|---|---|
30ec6c5bc2 | |||
56f4a65a1a | |||
6868a747ed | |||
1f68396aea | |||
84c5b85a3a | |||
a56319dcdb | |||
2f30e59222 | |||
3d1fdd7c79 | |||
f9f808ef5b | |||
d2cf005052 |
33
changelog.md
33
changelog.md
@ -1,5 +1,38 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 2025-03-08 - 5.5.10 - fix(node)
|
||||||
|
Removed unused jest dependency from project.
|
||||||
|
|
||||||
|
- Removed '@jest/globals' from dependencies in package.json.
|
||||||
|
- Removed unused jest import from ts_node/index.ts.
|
||||||
|
- Kept 'expect' dependency from jest library.
|
||||||
|
|
||||||
|
## 2025-03-08 - 5.5.9 - fix(dependencies)
|
||||||
|
Fix missing jest dependency in package.json and update exports in ts_node/index.ts
|
||||||
|
|
||||||
|
- Added missing '@jest/globals' dependency to package.json.
|
||||||
|
- Updated ts_node/index.ts to properly export jest along with jestExpect.
|
||||||
|
|
||||||
|
## 2025-03-08 - 5.5.8 - fix(test)
|
||||||
|
Ensure compatibility with async/await in test cases.
|
||||||
|
|
||||||
|
|
||||||
|
## 2025-03-08 - 5.5.7 - fix(dependencies)
|
||||||
|
Updated project dependencies to the latest versions for improved stability and performance.
|
||||||
|
|
||||||
|
- Updated `@push.rocks/smartexpect` to version 1.6.1.
|
||||||
|
- Updated `@push.rocks/smartfile` to version 11.2.0.
|
||||||
|
- Updated `@push.rocks/smartpromise` to version 4.2.3.
|
||||||
|
- Updated `@push.rocks/smartshell` to version 3.2.3.
|
||||||
|
- Updated `@git.zone/tsbuild` to version 2.2.6.
|
||||||
|
- Updated `@git.zone/tstest` to version 1.0.96.
|
||||||
|
- Updated `@types/node` to version 22.13.10.
|
||||||
|
|
||||||
|
## 2025-01-19 - 5.5.6 - fix(dependencies)
|
||||||
|
Update smartpromise dependency to version 4.2.0.
|
||||||
|
|
||||||
|
- Updated @push.rocks/smartpromise dependency from version 4.1.0 to 4.2.0 in package.json.
|
||||||
|
|
||||||
## 2025-01-19 - 5.5.5 - fix(dependencies)
|
## 2025-01-19 - 5.5.5 - fix(dependencies)
|
||||||
Update dependencies to the latest versions to address multiple fixes.
|
Update dependencies to the latest versions to address multiple fixes.
|
||||||
|
|
||||||
|
16
package.json
16
package.json
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@push.rocks/tapbundle",
|
"name": "@push.rocks/tapbundle",
|
||||||
"private": false,
|
"private": false,
|
||||||
"version": "5.5.5",
|
"version": "5.5.10",
|
||||||
"description": "A comprehensive testing automation library that provides a wide range of utilities and tools for TAP (Test Anything Protocol) based testing, especially suitable for projects using tapbuffer.",
|
"description": "A comprehensive testing automation library that provides a wide range of utilities and tools for TAP (Test Anything Protocol) based testing, especially suitable for projects using tapbuffer.",
|
||||||
"exports": {
|
"exports": {
|
||||||
".": "./dist_ts/index.js",
|
".": "./dist_ts/index.js",
|
||||||
@ -30,23 +30,23 @@
|
|||||||
"@push.rocks/smartcrypto": "^2.0.4",
|
"@push.rocks/smartcrypto": "^2.0.4",
|
||||||
"@push.rocks/smartdelay": "^3.0.5",
|
"@push.rocks/smartdelay": "^3.0.5",
|
||||||
"@push.rocks/smartenv": "^5.0.12",
|
"@push.rocks/smartenv": "^5.0.12",
|
||||||
"@push.rocks/smartexpect": "^1.4.0",
|
"@push.rocks/smartexpect": "^1.6.1",
|
||||||
"@push.rocks/smartfile": "^11.1.5",
|
"@push.rocks/smartfile": "^11.2.0",
|
||||||
"@push.rocks/smartjson": "^5.0.20",
|
"@push.rocks/smartjson": "^5.0.20",
|
||||||
"@push.rocks/smartmongo": "^2.0.10",
|
"@push.rocks/smartmongo": "^2.0.10",
|
||||||
"@push.rocks/smartpath": "^5.0.18",
|
"@push.rocks/smartpath": "^5.0.18",
|
||||||
"@push.rocks/smartpromise": "^4.1.0",
|
"@push.rocks/smartpromise": "^4.2.3",
|
||||||
"@push.rocks/smartrequest": "^2.0.23",
|
"@push.rocks/smartrequest": "^2.0.23",
|
||||||
"@push.rocks/smarts3": "^2.2.5",
|
"@push.rocks/smarts3": "^2.2.5",
|
||||||
"@push.rocks/smartshell": "^3.2.2",
|
"@push.rocks/smartshell": "^3.2.3",
|
||||||
"@push.rocks/smarttime": "^4.1.1",
|
"@push.rocks/smarttime": "^4.1.1",
|
||||||
"expect": "^29.7.0"
|
"expect": "^29.7.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@git.zone/tsbuild": "^2.1.66",
|
"@git.zone/tsbuild": "^2.2.6",
|
||||||
"@git.zone/tsrun": "^1.2.43",
|
"@git.zone/tsrun": "^1.2.43",
|
||||||
"@git.zone/tstest": "^1.0.77",
|
"@git.zone/tstest": "^1.0.96",
|
||||||
"@types/node": "^22.10.7",
|
"@types/node": "^22.13.10",
|
||||||
"randomstring": "^1.3.1"
|
"randomstring": "^1.3.1"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
|
3260
pnpm-lock.yaml
generated
3260
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@push.rocks/tapbundle',
|
name: '@push.rocks/tapbundle',
|
||||||
version: '5.5.5',
|
version: '5.5.10',
|
||||||
description: 'A comprehensive testing automation library that provides a wide range of utilities and tools for TAP (Test Anything Protocol) based testing, especially suitable for projects using tapbuffer.'
|
description: 'A comprehensive testing automation library that provides a wide range of utilities and tools for TAP (Test Anything Protocol) based testing, especially suitable for projects using tapbuffer.'
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
export * from './classes.tapnodetools.js';
|
export * from './classes.tapnodetools.js';
|
||||||
|
|
||||||
import { expect as jestExpect } from 'expect';
|
import { expect as jestExpect } from 'expect';
|
||||||
|
|
||||||
export { jestExpect };
|
export { jestExpect };
|
||||||
|
Reference in New Issue
Block a user