mirror of
https://github.com/morten-olsen/mini-loader.git
synced 2026-02-08 01:36:26 +01:00
11 lines
243 B
TypeScript
11 lines
243 B
TypeScript
import { Command } from 'commander';
|
|
import { Config } from '../../config/config.js';
|
|
|
|
const current = new Command('current');
|
|
current.action(async () => {
|
|
const config = new Config();
|
|
console.log(config.context);
|
|
});
|
|
|
|
export { current };
|