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