Compare commits

..

8 Commits

Author SHA1 Message Date
ac5e036967 1.0.82 2023-11-09 17:55:27 +01:00
6ccd0281b9 fix(core): update 2023-11-09 17:55:26 +01:00
d0f85b026f 1.0.81 2023-09-09 23:22:07 +02:00
4376cafabb fix(core): update 2023-09-09 23:22:06 +02:00
1a6e449b8d 1.0.80 2023-08-26 15:42:19 +02:00
6ec99e7276 fix(core): update 2023-08-26 15:42:18 +02:00
e958417d47 1.0.79 2023-08-26 14:54:44 +02:00
24416c1b5c fix(core): update 2023-08-26 14:54:44 +02:00
7 changed files with 1760 additions and 1011 deletions

View File

@ -1,5 +1,5 @@
#!/usr/bin/env node
process.env.CLI_CALL = 'true';
import * as tsrun from '@gitzone/tsrun';
import * as tsrun from '@git.zone/tsrun';
tsrun.runPath('./cli.child.js', import.meta.url);

View File

@ -1,6 +1,6 @@
{
"name": "@git.zone/tstest",
"version": "1.0.78",
"version": "1.0.82",
"private": false,
"description": "a test utility to run tests that match test/**/*.ts",
"main": "dist_ts/index.js",
@ -20,22 +20,22 @@
"buildDocs": "tsdoc"
},
"devDependencies": {
"@git.zone/tsbuild": "^2.1.66",
"@types/node": "^20.4.2"
"@git.zone/tsbuild": "^2.1.70",
"@types/node": "^20.9.0"
},
"dependencies": {
"@apiglobal/typedserver": "^2.0.65",
"@gitzone/tsbundle": "^2.0.8",
"@gitzone/tsrun": "^1.2.44",
"@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.28",
"@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.12",
"figures": "^5.0.0"
"@push.rocks/tapbundle": "^5.0.15",
"figures": "^6.0.1"
},
"files": [
"ts/**/*",

2728
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@git.zone/tstest',
version: '1.0.78',
version: '1.0.82',
description: 'a test utility to run tests that match test/**/*.ts'
}

View File

@ -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

View File

@ -4,7 +4,7 @@ import * as path from 'path';
export { path };
// @apiglobal scope
import * as typedserver from '@apiglobal/typedserver';
import * as typedserver from '@api.global/typedserver';
export {
typedserver
@ -32,7 +32,7 @@ export {
};
// @gitzone scope
import * as tsbundle from '@gitzone/tsbundle';
import * as tsbundle from '@git.zone/tsbundle';
export { tsbundle };

View File

@ -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"
]
}