diff --git a/README.md b/README.md index f0c5ab0dbe..7d852f76e2 100644 --- a/README.md +++ b/README.md @@ -375,7 +375,7 @@ The NPM packager supports the following `packagerOptions`: | Option | Type | Default | Description | | ------------------ | ---- | ------- | --------------------------------------------------- | -| noInstall | bool | false | Do not run npm install (assume install completed) | +| noInstall | bool | false | Do not run `npm install` (assume install completed) | ##### Yarn @@ -386,7 +386,7 @@ The yarn packager supports the following `packagerOptions`: | Option | Type | Default | Description | | ------------------ | ---- | ------- | --------------------------------------------------- | | ignoreScripts | bool | false | Do not execute package.json hook scripts on install | -| noInstall | bool | false | Do not run yarn install (assume install completed) | +| noInstall | bool | false | Do not run `yarn install` (assume install completed)| | noFrozenLockfile | bool | false | Do not require an up-to-date yarn.lock | | networkConcurrency | int | | Specify number of concurrent network requests | @@ -507,7 +507,6 @@ custom: This can be useful, in case you want to upload the source maps to your Error reporting system, or just have it available for some post processing. - #### Nodejs custom runtime If you are using a nodejs custom runtime you can add the property `allowCustomRuntime: true`. @@ -521,6 +520,7 @@ exampleFunction: ⚠️ **Note: this will only work if your custom runtime and function are written in JavaScript. Make sure you know what you are doing when this option is set to `true`** + #### Examples You can find an example setups in the [`examples`][link-examples] folder.