Skip to content

Commit

Permalink
chore: Update configurations details for projectRunner in docs (#345)
Browse files Browse the repository at this point in the history
* chore: Update configurations details for projectRunner in docs

* update projectRunner to hostProject

* Update neutralino.config.json.md

---------

Co-authored-by: Shalitha Suranga <[email protected]>
  • Loading branch information
viralgupta and shalithasuranga authored Sep 24, 2024
1 parent f6b8e73 commit 57d6c19
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion docs/configuration/neutralino.config.json.md
Original file line number Diff line number Diff line change
Expand Up @@ -350,9 +350,29 @@ Use `|` character to set multiple regular expressions, as shown below.

### `cli.frontendLibrary: object`

Enables frontend development tools (HMR, etc) for the `neu run --frontend-lib-dev` command. Learn more about frontend
Enables frontend development tools (HMR, etc) for the `neu run` command. Learn more about frontend
framework integration from [here](../getting-started/using-frontend-libraries.md)

### `cli.hostProject.projectPath: string`

Sets the project path of the host project. This path will be used as the current directory while executing the host-project-related commands.

### `cli.hostProject.initCommand: string`

A command that gets executed after downloading an host app template with the `neu create` command.

### `cli.hostProject.devCommand: string`

This command will run with the `neu run` command to start the host project.

### `cli.hostProject.buildCommand: string`

The `neu build` command will execute this command before generating the app bundle, so you can generate bundled version of host project code.

### `cli.hostProject.buildPath: string`

Location where the final read-to-distribute host project files will be stored after the execution of `buildCommand`. Files in this folder are copied into the app bundle path after the execution of `neu build` command.

### `cli.distributionPath: string`

Sets the build path for neu CLI. For example, if you need to get the built binaries in `build` folder instead of `dist`, you can set the `distributionPath` as follows:
Expand Down

0 comments on commit 57d6c19

Please sign in to comment.