Skip to content

Commit

Permalink
docs: update API docs for build package
Browse files Browse the repository at this point in the history
  • Loading branch information
chrispcampbell committed Jun 4, 2024
1 parent ed06da8 commit cf5f179
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
9 changes: 9 additions & 0 deletions packages/build/docs/interfaces/ResolvedConfig.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,3 +67,12 @@ ___
The code format to generate. If 'js', the model will be compiled to a JavaScript
file. If 'c', the model will be compiled to a C file (in which case an additional
plugin will be needed to convert the C code to a WebAssembly module).

___

### outListingFile

`Optional` **outListingFile**: `string`

The absolute path to the JSON file that will be written by the build process that
lists all dimensions and variables in the model.
10 changes: 10 additions & 0 deletions packages/build/docs/interfaces/UserConfig.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,16 @@ defaults to 'js'.

___

### outListingFile

`Optional` **outListingFile**: `string`

If defined, the build process will write a JSON file to the provided path that lists
all dimensions and variables in the model. This can be an absolute path, or if it
is a relative path it will be resolved relative to the `rootDir` for the project.

___

### plugins

`Optional` **plugins**: [`Plugin`](Plugin.md)[]
Expand Down

0 comments on commit cf5f179

Please sign in to comment.