a781a4f27e
BREAKING CHANGE: requires node >= 16 and some cli options have been renamed
30 lines
1.5 KiB
Markdown
30 lines
1.5 KiB
Markdown
# Universalize
|
|
|
|
> This file is generated by cli/codegen. Do not edit this file manually.
|
|
|
|
Combile built binaries into one universal binary
|
|
|
|
## Usage
|
|
|
|
```sh
|
|
# CLI
|
|
napi universalize [--options]
|
|
```
|
|
|
|
```typescript
|
|
// Programatically
|
|
import { NapiCli } from '@napi-rs/cli'
|
|
|
|
new NapiCli().universalize({
|
|
// 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` |
|
|
| outputDir | --output-dir,-o | string | false | './' | Path to the folder where all built `.node` files put, same as `--output-dir` of build command |
|