fix(node): Removed unused jest dependency from project.

This commit is contained in:
Philipp Kunz 2025-03-08 14:35:49 +00:00
parent 6868a747ed
commit 56f4a65a1a
5 changed files with 9 additions and 816 deletions

View File

@ -1,5 +1,12 @@
# 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) ## 2025-03-08 - 5.5.9 - fix(dependencies)
Fix missing jest dependency in package.json and update exports in ts_node/index.ts Fix missing jest dependency in package.json and update exports in ts_node/index.ts

View File

@ -24,7 +24,6 @@
}, },
"homepage": "https://code.foss.global/push.rocks/tapbundle#readme", "homepage": "https://code.foss.global/push.rocks/tapbundle#readme",
"dependencies": { "dependencies": {
"@jest/globals": "^29.7.0",
"@open-wc/testing": "^4.0.0", "@open-wc/testing": "^4.0.0",
"@push.rocks/consolecolor": "^2.0.2", "@push.rocks/consolecolor": "^2.0.2",
"@push.rocks/qenv": "^6.1.0", "@push.rocks/qenv": "^6.1.0",

811
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@push.rocks/tapbundle', name: '@push.rocks/tapbundle',
version: '5.5.9', 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.'
} }

View File

@ -1,6 +1,4 @@
export * from './classes.tapnodetools.js'; export * from './classes.tapnodetools.js';
import { jest } from '@jest/globals';
import { expect as jestExpect } from 'expect'; import { expect as jestExpect } from 'expect';
export { jest, jestExpect }; export { jestExpect };