fix(core): update

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

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';