fix(core): update

This commit is contained in:
Philipp Kunz 2024-04-19 13:54:20 +02:00
parent af90530000
commit 31ddd3ec23
7 changed files with 1737 additions and 1928 deletions

View File

@ -119,6 +119,6 @@ jobs:
run: |
npmci node install stable
npmci npm install
pnpm install -g @gitzone/tsdoc
pnpm install -g @git.zone/tsdoc
npmci command tsdoc
continue-on-error: true

View File

@ -13,20 +13,20 @@
"buildDocs": "tsdoc"
},
"devDependencies": {
"@gitzone/tsbuild": "^2.1.25",
"@gitzone/tsrun": "^1.2.38",
"@gitzone/tstest": "^1.0.52",
"@push.rocks/tapbundle": "^5.0.4",
"@types/node": "^18.11.2"
"@git.zone/tsbuild": "^2.1.66",
"@git.zone/tsrun": "^1.2.44",
"@git.zone/tstest": "^1.0.77",
"@push.rocks/tapbundle": "^5.0.23",
"@types/node": "^20.12.7"
},
"dependencies": {
"@push.rocks/lik": "^6.0.0",
"@push.rocks/smartfile": "^10.0.5",
"@push.rocks/lik": "^6.0.15",
"@push.rocks/smartfile": "^11.0.14",
"@push.rocks/smartfm": "^2.0.4",
"@push.rocks/smartlog": "^3.0.1",
"@push.rocks/smartlog": "^3.0.3",
"@push.rocks/smartlog-destination-local": "^9.0.1",
"@push.rocks/smartpath": "^5.0.5",
"@push.rocks/smartshell": "^3.0.3",
"@push.rocks/smartpath": "^5.0.14",
"@push.rocks/smartshell": "^3.0.5",
"@push.rocks/smartsystem": "^3.0.1"
},
"files": [

File diff suppressed because it is too large Load Diff

View File

@ -21,4 +21,4 @@ tap.test('should create a service', async () => {
});
});
tap.start();
export default tap.start();

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@push.rocks/smartdaemon',
version: '2.0.4',
description: 'start scripts as long running daemons and manage them'
version: '2.0.5',
description: 'Start scripts as long running daemons and manage them.'
}

View File

@ -1,8 +1,8 @@
import * as plugins from './smartdaemon.plugins.js';
import { SmartDaemonTemplateManager } from './smartdaemon.classes.templatemanager.js';
import {
type ISmartDaemonServiceConstructorOptions,
SmartDaemonService,
ISmartDaemonServiceConstructorOptions,
} from './smartdaemon.classes.service.js';
import { SmartDaemonSystemdManager } from './smartdaemon.classes.systemdmanager.js';

View File

@ -2,7 +2,7 @@ import * as plugins from './smartdaemon.plugins.js';
import * as paths from './smartdaemon.paths.js';
import { SmartDaemon } from './smartdaemon.classes.smartdaemon.js';
import {
ISmartDaemonServiceConstructorOptions,
type ISmartDaemonServiceConstructorOptions,
SmartDaemonService,
} from './smartdaemon.classes.service.js';