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: | run: |
npmci node install stable npmci node install stable
npmci npm install npmci npm install
pnpm install -g @gitzone/tsdoc pnpm install -g @git.zone/tsdoc
npmci command tsdoc npmci command tsdoc
continue-on-error: true continue-on-error: true

View File

@ -13,20 +13,20 @@
"buildDocs": "tsdoc" "buildDocs": "tsdoc"
}, },
"devDependencies": { "devDependencies": {
"@gitzone/tsbuild": "^2.1.25", "@git.zone/tsbuild": "^2.1.66",
"@gitzone/tsrun": "^1.2.38", "@git.zone/tsrun": "^1.2.44",
"@gitzone/tstest": "^1.0.52", "@git.zone/tstest": "^1.0.77",
"@push.rocks/tapbundle": "^5.0.4", "@push.rocks/tapbundle": "^5.0.23",
"@types/node": "^18.11.2" "@types/node": "^20.12.7"
}, },
"dependencies": { "dependencies": {
"@push.rocks/lik": "^6.0.0", "@push.rocks/lik": "^6.0.15",
"@push.rocks/smartfile": "^10.0.5", "@push.rocks/smartfile": "^11.0.14",
"@push.rocks/smartfm": "^2.0.4", "@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/smartlog-destination-local": "^9.0.1",
"@push.rocks/smartpath": "^5.0.5", "@push.rocks/smartpath": "^5.0.14",
"@push.rocks/smartshell": "^3.0.3", "@push.rocks/smartshell": "^3.0.5",
"@push.rocks/smartsystem": "^3.0.1" "@push.rocks/smartsystem": "^3.0.1"
}, },
"files": [ "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 = { export const commitinfo = {
name: '@push.rocks/smartdaemon', name: '@push.rocks/smartdaemon',
version: '2.0.4', version: '2.0.5',
description: 'start scripts as long running daemons and manage them' description: 'Start scripts as long running daemons and manage them.'
} }

View File

@ -1,8 +1,8 @@
import * as plugins from './smartdaemon.plugins.js'; import * as plugins from './smartdaemon.plugins.js';
import { SmartDaemonTemplateManager } from './smartdaemon.classes.templatemanager.js'; import { SmartDaemonTemplateManager } from './smartdaemon.classes.templatemanager.js';
import { import {
type ISmartDaemonServiceConstructorOptions,
SmartDaemonService, SmartDaemonService,
ISmartDaemonServiceConstructorOptions,
} from './smartdaemon.classes.service.js'; } from './smartdaemon.classes.service.js';
import { SmartDaemonSystemdManager } from './smartdaemon.classes.systemdmanager.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 * as paths from './smartdaemon.paths.js';
import { SmartDaemon } from './smartdaemon.classes.smartdaemon.js'; import { SmartDaemon } from './smartdaemon.classes.smartdaemon.js';
import { import {
ISmartDaemonServiceConstructorOptions, type ISmartDaemonServiceConstructorOptions,
SmartDaemonService, SmartDaemonService,
} from './smartdaemon.classes.service.js'; } from './smartdaemon.classes.service.js';