fix(tests): update test runner and developer dependencies; add pnpm workspace and packageManager
This commit is contained in:
@@ -1,5 +1,14 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 2025-08-29 - 2.0.9 - fix(tests)
|
||||||
|
update test runner and developer dependencies; add pnpm workspace and packageManager
|
||||||
|
|
||||||
|
- Change test import to use @git.zone/tstest/tapbundle and update test script to run with --verbose, --logfile and --timeout 60
|
||||||
|
- Bump dev dependency @git.zone/tsbuild and @git.zone/tstest to more recent releases
|
||||||
|
- Update several @push.rocks runtime dependencies to newer patch/minor versions (lik, smartfile, smartlog, smartpath, smartshell, smartsystem)
|
||||||
|
- Add packageManager field with pinned pnpm version
|
||||||
|
- Add pnpm-workspace.yaml with onlyBuiltDependencies entries
|
||||||
|
|
||||||
## 2025-03-03 - 2.0.8 - fix(core)
|
## 2025-03-03 - 2.0.8 - fix(core)
|
||||||
Update project dependencies and resolve minor issues in file paths
|
Update project dependencies and resolve minor issues in file paths
|
||||||
|
|
||||||
|
22
package.json
22
package.json
@@ -8,26 +8,25 @@
|
|||||||
"author": "Lossless GmbH",
|
"author": "Lossless GmbH",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "(tstest test/ --web)",
|
"test": "(tstest test/ --verbose --logfile --timeout 60)",
|
||||||
"build": "(tsbuild --web --allowimplicitany)",
|
"build": "(tsbuild --web --allowimplicitany)",
|
||||||
"buildDocs": "tsdoc"
|
"buildDocs": "tsdoc"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@git.zone/tsbuild": "^2.1.66",
|
"@git.zone/tsbuild": "^2.6.7",
|
||||||
"@git.zone/tsrun": "^1.2.44",
|
"@git.zone/tsrun": "^1.2.44",
|
||||||
"@git.zone/tstest": "^1.0.77",
|
"@git.zone/tstest": "^2.3.5",
|
||||||
"@push.rocks/tapbundle": "^5.0.23",
|
|
||||||
"@types/node": "^22.13.8"
|
"@types/node": "^22.13.8"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@push.rocks/lik": "^6.0.15",
|
"@push.rocks/lik": "^6.2.2",
|
||||||
"@push.rocks/smartfile": "^11.0.14",
|
"@push.rocks/smartfile": "^11.2.7",
|
||||||
"@push.rocks/smartfm": "^2.0.4",
|
"@push.rocks/smartfm": "^2.0.4",
|
||||||
"@push.rocks/smartlog": "^3.0.3",
|
"@push.rocks/smartlog": "^3.1.8",
|
||||||
"@push.rocks/smartlog-destination-local": "^9.0.1",
|
"@push.rocks/smartlog-destination-local": "^9.0.1",
|
||||||
"@push.rocks/smartpath": "^5.0.14",
|
"@push.rocks/smartpath": "^6.0.0",
|
||||||
"@push.rocks/smartshell": "^3.0.5",
|
"@push.rocks/smartshell": "^3.3.0",
|
||||||
"@push.rocks/smartsystem": "^3.0.1"
|
"@push.rocks/smartsystem": "^3.0.7"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"ts/**/*",
|
"ts/**/*",
|
||||||
@@ -58,5 +57,6 @@
|
|||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://code.foss.global/push.rocks/smartdaemon.git"
|
"url": "https://code.foss.global/push.rocks/smartdaemon.git"
|
||||||
}
|
},
|
||||||
|
"packageManager": "pnpm@10.14.0+sha512.ad27a79641b49c3e481a16a805baa71817a04bbe06a38d17e60e2eaee83f6a146c6a688125f5792e48dd5ba30e7da52a5cda4c3992b9ccf333f9ce223af84748"
|
||||||
}
|
}
|
||||||
|
5801
pnpm-lock.yaml
generated
5801
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
4
pnpm-workspace.yaml
Normal file
4
pnpm-workspace.yaml
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
onlyBuiltDependencies:
|
||||||
|
- esbuild
|
||||||
|
- mongodb-memory-server
|
||||||
|
- puppeteer
|
@@ -1,4 +1,4 @@
|
|||||||
import { expect, tap } from '@push.rocks/tapbundle';
|
import { expect, tap } from '@git.zone/tstest/tapbundle';
|
||||||
|
|
||||||
import * as plugins from './plugins.js';
|
import * as plugins from './plugins.js';
|
||||||
|
|
||||||
|
@@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@push.rocks/smartdaemon',
|
name: '@push.rocks/smartdaemon',
|
||||||
version: '2.0.8',
|
version: '2.0.9',
|
||||||
description: 'Start scripts as long running daemons and manage them.'
|
description: 'Start scripts as long running daemons and manage them.'
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user