36 lines
2.5 KiB
Markdown
36 lines
2.5 KiB
Markdown
|
# Pre Publish
|
||
|
|
||
|
> This file is generated by cli/codegen. Do not edit this file manually.
|
||
|
|
||
|
Update package.json and copy addons into per platform packages
|
||
|
|
||
|
## Usage
|
||
|
|
||
|
```sh
|
||
|
# CLI
|
||
|
napi pre-publish [--options]
|
||
|
```
|
||
|
|
||
|
```typescript
|
||
|
// Programatically
|
||
|
import { NapiCli } from '@napi-rs/cli'
|
||
|
|
||
|
new NapiCli().prePublish({
|
||
|
// options
|
||
|
})
|
||
|
```
|
||
|
|
||
|
## Options
|
||
|
|
||
|
| Options | CLI Options | type | required | default | description |
|
||
|
| --------------- | ------------------- | ---------------- | -------- | -------------- | ------------------------------------------------------------------------------------------------------------------ |
|
||
|
| | --help,-h | | | | get help |
|
||
|
| cwd | --cwd | string | false | process.cwd() | The working directory of where napi command will be executed in, all other paths options are relative to this path |
|
||
|
| packageJsonPath | --package-json-path | string | false | 'package.json' | Path to `package.json` |
|
||
|
| npmDir | --npm-dir | string | false | 'npm' | Path to the folder where the npm packages put |
|
||
|
| tagStyle | --tag-style | 'npm' \| 'lerna' | false | 'lerna' | git tag style, `npm` or `lerna` |
|
||
|
| ghRelease | --gh-release | boolean | false | true | Whether create GitHub release |
|
||
|
| ghReleaseName | --gh-release-name | string | false | | GitHub release name |
|
||
|
| ghReleaseId | --gh-release-id | string | false | | Existing GitHub release id |
|
||
|
| dryRun | --dry-run | boolean | false | false | Dry run without touching file system |
|