docs: update readme with project details

This commit is contained in:
daydreamer-json
2026-01-22 19:15:05 +09:00
parent 61864552d3
commit e9a58c9a4a
4 changed files with 22 additions and 9 deletions

View File

@@ -1,3 +1,4 @@
import path from 'node:path';
import yargs from 'yargs';
import { hideBin } from 'yargs/helpers';
import cmds from './cmds.js';
@@ -33,7 +34,7 @@ async function parseCommand() {
'output-dir': {
alias: ['o'],
desc: 'Output root directory',
default: appConfig.file.outputDirPath,
default: path.resolve('output'),
normalize: true,
type: 'string',
},