diff options
author | Cashew <52880648+Scrub1492@users.noreply.github.com> | 2023-12-29 10:26:33 +0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-29 03:26:33 +0000 |
commit | 39eeed805044388591bdb45a790414495a7bf321 (patch) | |
tree | 557f99043102aba83f323610097f668f2c48814c /CONTRIBUTING.md | |
parent | 1e254fd1d4423b984e176547ef36a14383bbd7f5 (diff) |
remove getArgs in favor of node:util.parseArgs (#476)
* remove getArgs
* kebab-case to camelCase
* update app/deployment
Diffstat (limited to 'CONTRIBUTING.md')
-rw-r--r-- | CONTRIBUTING.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 3b48236f..28d02c0b 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -51,9 +51,9 @@ Several command line arguments are available for these scripts: - `--all` - Builds all targets specified in [manifest-variants.json](dev/data/manifest-variants.json). - `--default` - Restores the default manifest file. - `--manifest <target>` - Overwrites `ext/manifest.json` with the manifest variant for the specified build target. -- `--dry-run` - Runs the full build process (excluding zip building), checking that the configuration is valid. -- `--dry-run-build-zip` - If `--dry-run` is also specified, zip building will also be performed in memory; no files are created. -- `--yomitan-version <version>` - Sets the version number in the extension manifest. Defaults to 0.0.0.0 if not set. +- `--dryRun` - Runs the full build process (excluding zip building), checking that the configuration is valid. +- `--dryRunBuildZip` - If `--dryRun` is also specified, zip building will also be performed in memory; no files are created. +- `--version <version>` - Sets the version number in the extension manifest. Defaults to 0.0.0.0 if not set. If no arguments are specified, the command is equivalent to `build.bat --all`. |