fix(core): update
This commit is contained in:
@ -1,5 +1,5 @@
|
||||
import * as early from '@pushrocks/early';
|
||||
early.start('tswatch');
|
||||
export * from './tswatch.classes.tswatch';
|
||||
export * from './tswatch.cli';
|
||||
export * from './tswatch.classes.tswatch.js';
|
||||
export * from './tswatch.cli.js';
|
||||
early.stop();
|
||||
|
@ -1 +1 @@
|
||||
export * from './interfaces.watchmodes';
|
||||
export * from './interfaces.watchmodes.js';
|
||||
|
@ -1,8 +1,8 @@
|
||||
import * as plugins from './tswatch.plugins';
|
||||
import * as paths from './tswatch.paths';
|
||||
import * as interfaces from './interfaces';
|
||||
import * as plugins from './tswatch.plugins.js';
|
||||
import * as paths from './tswatch.paths.js';
|
||||
import * as interfaces from './interfaces/index.js';
|
||||
|
||||
import { Watcher } from './tswatch.classes.watcher';
|
||||
import { Watcher } from './tswatch.classes.watcher.js';
|
||||
|
||||
export class TsWatch {
|
||||
public watchmode: interfaces.TWatchModes;
|
||||
|
@ -1,5 +1,5 @@
|
||||
import * as plugins from './tswatch.plugins';
|
||||
import { logger } from './tswatch.logging';
|
||||
import * as plugins from './tswatch.plugins.js';
|
||||
import { logger } from './tswatch.logging.js';
|
||||
|
||||
export type TCommandFunction = () => Promise<void>;
|
||||
|
||||
|
@ -1,8 +1,8 @@
|
||||
import * as plugins from './tswatch.plugins';
|
||||
import * as paths from './tswatch.paths';
|
||||
import { logger } from './tswatch.logging';
|
||||
import * as plugins from './tswatch.plugins.js';
|
||||
import * as paths from './tswatch.paths.js';
|
||||
import { logger } from './tswatch.logging.js';
|
||||
|
||||
import { TsWatch } from './tswatch.classes.tswatch';
|
||||
import { TsWatch } from './tswatch.classes.tswatch.js';
|
||||
|
||||
const tswatchCli = new plugins.smartcli.Smartcli();
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
import * as plugins from './tswatch.plugins';
|
||||
import * as plugins from './tswatch.plugins.js';
|
||||
|
||||
export const logger = new plugins.smartlog.Smartlog({
|
||||
logContext: {
|
||||
|
@ -1,3 +1,3 @@
|
||||
import * as plugins from './tswatch.plugins';
|
||||
import * as plugins from './tswatch.plugins.js';
|
||||
|
||||
export const cwd = process.cwd();
|
||||
|
Reference in New Issue
Block a user