fix(core): update
This commit is contained in:
parent
d0f85b026f
commit
6ccd0281b9
14
package.json
14
package.json
@ -20,22 +20,22 @@
|
||||
"buildDocs": "tsdoc"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@git.zone/tsbuild": "^2.1.69",
|
||||
"@types/node": "^20.5.6"
|
||||
"@git.zone/tsbuild": "^2.1.70",
|
||||
"@types/node": "^20.9.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"@api.global/typedserver": "^3.0.4",
|
||||
"@git.zone/tsbundle": "^2.0.8",
|
||||
"@api.global/typedserver": "^3.0.9",
|
||||
"@git.zone/tsbundle": "^2.0.10",
|
||||
"@git.zone/tsrun": "^1.2.46",
|
||||
"@push.rocks/consolecolor": "^2.0.1",
|
||||
"@push.rocks/smartbrowser": "^2.0.5",
|
||||
"@push.rocks/smartbrowser": "^2.0.6",
|
||||
"@push.rocks/smartdelay": "^3.0.5",
|
||||
"@push.rocks/smartfile": "^10.0.30",
|
||||
"@push.rocks/smartfile": "^11.0.0",
|
||||
"@push.rocks/smartlog": "^3.0.3",
|
||||
"@push.rocks/smartpromise": "^4.0.3",
|
||||
"@push.rocks/smartshell": "^3.0.3",
|
||||
"@push.rocks/tapbundle": "^5.0.15",
|
||||
"figures": "^5.0.0"
|
||||
"figures": "^6.0.1"
|
||||
},
|
||||
"files": [
|
||||
"ts/**/*",
|
||||
|
1433
pnpm-lock.yaml
generated
1433
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
@ -3,6 +3,6 @@
|
||||
*/
|
||||
export const commitinfo = {
|
||||
name: '@git.zone/tstest',
|
||||
version: '1.0.81',
|
||||
version: '1.0.82',
|
||||
description: 'a test utility to run tests that match test/**/*.ts'
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
import * as plugins from './tstest.plugins.js';
|
||||
import * as paths from './tstest.paths.js';
|
||||
import { Smartfile } from '@push.rocks/smartfile';
|
||||
import { SmartFile } from '@push.rocks/smartfile';
|
||||
|
||||
// tap related stuff
|
||||
import { TapCombinator } from './tstest.classes.tap.combinator.js';
|
||||
@ -26,7 +26,7 @@ export class TestDirectory {
|
||||
/**
|
||||
* an array of Smartfiles
|
||||
*/
|
||||
testfileArray: Smartfile[] = [];
|
||||
testfileArray: SmartFile[] = [];
|
||||
|
||||
/**
|
||||
* the constructor for TestDirectory
|
||||
|
@ -3,9 +3,12 @@
|
||||
"experimentalDecorators": true,
|
||||
"useDefineForClassFields": false,
|
||||
"target": "ES2022",
|
||||
"module": "ES2022",
|
||||
"moduleResolution": "nodenext",
|
||||
"module": "NodeNext",
|
||||
"moduleResolution": "NodeNext",
|
||||
"esModuleInterop": true,
|
||||
"verbatimModuleSyntax": true,
|
||||
}
|
||||
"verbatimModuleSyntax": true
|
||||
},
|
||||
"exclude": [
|
||||
"dist_*/**/*.d.ts"
|
||||
]
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user