napi-rs/cli/docs/rename.md

38 lines
2.8 KiB
Markdown
Raw Normal View History

# Rename
> This file is generated by cli/codegen. Do not edit this file manually.
Rename the NAPI-RS project
## Usage
```sh
# CLI
napi rename [--options]
```
```typescript
// Programatically
import { NapiCli } from '@napi-rs/cli'
new NapiCli().rename({
// 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 |
| configPath | --config-path,-c | string | false | | Path to `napi` config json file |
| 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 |
| name | --name,-n | string | false | | The new name of the project |
| binaryName | --binary-name,-b | string | false | | The new binary name \*.node files |
| packageName | --package-name | string | false | | The new package name of the project |
| manifestPath | --manifest-path | string | false | 'Cargo.toml' | Path to `Cargo.toml` |
| repository | --repository | string | false | | The new repository of the project |
| description | --description | string | false | | The new description of the project |