mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-07-17 16:37:43 +00:00
10 lines
300 B
TypeScript
Executable file
10 lines
300 B
TypeScript
Executable file
#!/usr/bin/env ts-node
|
|
|
|
import { runLogMigration } from './log-migration-helper';
|
|
|
|
runLogMigration({
|
|
description: 'Migrating Log to PluginLog in plugins directory...',
|
|
fileLabel: 'TypeScript files in plugins directory',
|
|
globPattern: 'src/app/plugins/**/*.ts',
|
|
targetLogName: 'PluginLog',
|
|
});
|