60 lines
2.6 KiB
TypeScript
Vendored
60 lines
2.6 KiB
TypeScript
Vendored
import { program } from 'commander';
|
|
import log from 'loglevel';
|
|
import chalk from 'chalk';
|
|
import { DEFAULT_PAKE_OPTIONS } from './defaults.js';
|
|
import { PakeCliOptions } from './types.js';
|
|
import { validateNumberInput, validateUrlInput } from './utils/validate.js';
|
|
import handleInputOptions from './options/index.js';
|
|
import BuilderFactory from './builders/BuilderFactory.js';
|
|
import { checkUpdateTips } from './helpers/updater.js';
|
|
// @ts-expect-error
|
|
import packageJson from '../package.json';
|
|
import logger from './options/logger.js';
|
|
|
|
program.version(packageJson.version).description('A cli application can package a web page to desktop application.');
|
|
|
|
program
|
|
.showHelpAfterError()
|
|
.argument('[url]', 'the web url you want to package', validateUrlInput)
|
|
.option('--name <string>', 'application name')
|
|
.option('--icon <string>', 'application icon', DEFAULT_PAKE_OPTIONS.icon)
|
|
.option('--height <number>', 'window height', validateNumberInput, DEFAULT_PAKE_OPTIONS.height)
|
|
.option('--width <number>', 'window width', validateNumberInput, DEFAULT_PAKE_OPTIONS.width)
|
|
.option('--no-resizable', 'whether the window can be resizable', DEFAULT_PAKE_OPTIONS.resizable)
|
|
.option('--fullscreen', 'makes the packaged app start in full screen', DEFAULT_PAKE_OPTIONS.fullscreen)
|
|
.option('--transparent', 'transparent title bar', DEFAULT_PAKE_OPTIONS.transparent)
|
|
.option('--user-agent <string>', 'custom user agent', DEFAULT_PAKE_OPTIONS.userAgent)
|
|
.option('--show-menu', 'show menu in app', DEFAULT_PAKE_OPTIONS.showMenu)
|
|
.option('--show-system-tray', 'show system tray in app', DEFAULT_PAKE_OPTIONS.showSystemTray)
|
|
.option('--system-tray-icon <string>', 'custom system tray icon', DEFAULT_PAKE_OPTIONS.systemTrayIcon)
|
|
.option('--iter-copy-file',
|
|
'copy all static file to pake app when url is a local file',
|
|
DEFAULT_PAKE_OPTIONS.iterCopyFile)
|
|
.option(
|
|
'--targets <string>',
|
|
'only for linux, default is "deb", option "appaimge" or "all"(deb & appimage)',
|
|
DEFAULT_PAKE_OPTIONS.targets)
|
|
.option('--debug', 'debug', DEFAULT_PAKE_OPTIONS.transparent)
|
|
.action(async (url: string, options: PakeCliOptions) => {
|
|
checkUpdateTips();
|
|
|
|
if (!url) {
|
|
// 直接 pake 不需要出现url提示
|
|
program.help();
|
|
}
|
|
|
|
log.setDefaultLevel('info');
|
|
if (options.debug) {
|
|
log.setLevel('debug');
|
|
}
|
|
|
|
const builder = BuilderFactory.create();
|
|
await builder.prepare();
|
|
// logger.warn("you input url is ", url);
|
|
const appOptions = await handleInputOptions(options, url);
|
|
// logger.info(JSON.stringify(appOptions, null, 4));
|
|
builder.build(url, appOptions);
|
|
});
|
|
|
|
program.parse();
|