🎨 Modify iterCopyFile to useLocalFile
This commit is contained in:
4
bin/README.md
vendored
4
bin/README.md
vendored
@@ -211,12 +211,12 @@ Specify the system tray icon. This is only effective when the system tray is ena
|
||||
--system-tray-icon <path>
|
||||
```
|
||||
|
||||
#### [iter-copy-file]
|
||||
#### [use-local-file]
|
||||
|
||||
Enable recursive copying. When the URL is a local file path, enabling this option will copy the folder containing the file specified in the URL, as well as all sub-files, to the Pake static folder. This is disabled by default.
|
||||
|
||||
```shell
|
||||
--iter-copy-file
|
||||
--use-local-file
|
||||
```
|
||||
|
||||
#### [inject]
|
||||
|
||||
4
bin/README_CN.md
vendored
4
bin/README_CN.md
vendored
@@ -212,14 +212,14 @@ Linux,默认为 `all`。
|
||||
--system-tray-icon <path>
|
||||
```
|
||||
|
||||
#### [iter-copy-file]
|
||||
#### [use-local-file]
|
||||
|
||||
当 `url` 为本地文件路径时,如果启用此选项,则会递归地将 `url` 路径文件所在的文件夹及其所有子文件复
|
||||
|
||||
制到 Pake 的静态文件夹。默认不启用。
|
||||
|
||||
```shell
|
||||
--iter-copy-file
|
||||
--use-local-file
|
||||
```
|
||||
|
||||
#### [inject]
|
||||
|
||||
3
bin/cli.ts
vendored
3
bin/cli.ts
vendored
@@ -29,17 +29,18 @@ program
|
||||
.option('--icon <string>', 'Application icon', DEFAULT.icon)
|
||||
.option('--width <number>', 'Window width', validateNumberInput, DEFAULT.width)
|
||||
.option('--height <number>', 'Window height', validateNumberInput, DEFAULT.height)
|
||||
.option('--use-local-file', 'Use local file packaging', DEFAULT.useLocalFile)
|
||||
.option('--fullscreen', 'Start in full screen', DEFAULT.fullscreen)
|
||||
.option('--hide-title-bar', 'Only for Mac, hide title bar', DEFAULT.hideTitleBar)
|
||||
.option('--activation-shortcut <string>', 'Shortcut key to active App', DEFAULT.activationShortcut)
|
||||
.option('--multi-arch', 'Only for Mac, supports both Intel and M1', DEFAULT.multiArch)
|
||||
.option('--inject [injects...]', 'Injection of .js or .css Files', DEFAULT.inject)
|
||||
.option('--safe-domain [domains...]', 'Domains that Require Security Configuration"', DEFAULT.safeDomain)
|
||||
.option('--debug', 'Debug build and more output', DEFAULT.debug)
|
||||
.addOption(new Option('--user-agent <string>', 'Custom user agent').default(DEFAULT.userAgent).hideHelp())
|
||||
.addOption(new Option('--targets <string>', 'Only for Linux, option "deb" or "appimage"').default(DEFAULT.targets).hideHelp())
|
||||
.addOption(new Option('--always-on-top', 'Always on the top level').default(DEFAULT.alwaysOnTop).hideHelp())
|
||||
.addOption(new Option('--disabled-web-shortcuts', 'Disabled webPage shortcuts').default(DEFAULT.disabledWebShortcuts).hideHelp())
|
||||
.addOption(new Option('--safe-domain [domains...]', 'Domains that Require Security Configuration').default(DEFAULT.safeDomain).hideHelp())
|
||||
.addOption(new Option('--show-system-tray', 'Show system tray in app').default(DEFAULT.showSystemTray).hideHelp())
|
||||
.addOption(new Option('--system-tray-icon <string>', 'Custom system tray icon').default(DEFAULT.systemTrayIcon).hideHelp())
|
||||
.version(packageJson.version, '-v, --version', 'Output the current version')
|
||||
|
||||
2
bin/defaults.ts
vendored
2
bin/defaults.ts
vendored
@@ -14,7 +14,7 @@ export const DEFAULT_PAKE_OPTIONS: PakeCliOptions = {
|
||||
showSystemTray: false,
|
||||
multiArch: false,
|
||||
targets: 'deb',
|
||||
iterCopyFile: false,
|
||||
useLocalFile: false,
|
||||
systemTrayIcon: '',
|
||||
debug: false,
|
||||
inject: [],
|
||||
|
||||
4
bin/helpers/merge.ts
vendored
4
bin/helpers/merge.ts
vendored
@@ -19,7 +19,7 @@ export async function mergeConfig(url: string, options: PakeAppOptions, tauriCon
|
||||
userAgent,
|
||||
showSystemTray,
|
||||
systemTrayIcon,
|
||||
iterCopyFile,
|
||||
useLocalFile,
|
||||
identifier,
|
||||
name,
|
||||
resizable = true,
|
||||
@@ -57,7 +57,7 @@ export async function mergeConfig(url: string, options: PakeAppOptions, tauriCon
|
||||
const distDir = path.join(npmDirectory, 'dist');
|
||||
const distBakDir = path.join(npmDirectory, 'dist_bak');
|
||||
|
||||
if (!iterCopyFile) {
|
||||
if (!useLocalFile) {
|
||||
const urlPath = path.join(distDir, fileName);
|
||||
await fsExtra.copy(url, urlPath);
|
||||
} else {
|
||||
|
||||
2
bin/types.ts
vendored
2
bin/types.ts
vendored
@@ -43,7 +43,7 @@ export interface PakeCliOptions {
|
||||
systemTrayIcon: string;
|
||||
|
||||
// Recursive copy, when url is a local file path, if this option is enabled, the url path file and all its subfiles will be copied to the pake static file folder, default off
|
||||
iterCopyFile: false;
|
||||
useLocalFile: false;
|
||||
|
||||
// Multi arch, supports both Intel and M1 chips, only for Mac
|
||||
multiArch: boolean;
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "pake-cli",
|
||||
"version": "2.4.0",
|
||||
"version": "2.5.0",
|
||||
"description": "🤱🏻 Turn any webpage into a desktop app with Rust. 🤱🏻 利用 Rust 轻松构建轻量级多端桌面应用。",
|
||||
"engines": {
|
||||
"node": ">=16.0.0"
|
||||
|
||||
Reference in New Issue
Block a user