diff options
author | Samruddhi Khandale <skhandale@microsoft.com> | 2023-04-14 23:48:25 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-14 23:48:25 +0300 |
commit | 2237731474ace274b1756e63937a958131cf719e (patch) | |
tree | 0ba813fb0e58039acea71bdf9f73e1577268d2e0 /src/node | |
parent | 8d3e9aca9d352a3c4459e321de5d0a0b12062112 (diff) |
Automated documentation update (#521)
Automated documentation update [skip ci]
Co-authored-by: github-actions <github-actions@github.com>
Diffstat (limited to 'src/node')
-rw-r--r-- | src/node/README.md | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/node/README.md b/src/node/README.md index 877ea58..7a49096 100644 --- a/src/node/README.md +++ b/src/node/README.md @@ -20,6 +20,12 @@ Installs Node.js, nvm, yarn, pnpm, and needed dependencies. | nvmInstallPath | The path where NVM will be installed. | string | /usr/local/share/nvm | | nvmVersion | Version of NVM to install. | string | 0.39.2 | +## Customizations + +### VS Code Extensions + +- `dbaeumer.vscode-eslint` + ## Using nvm from postCreateCommand or another lifecycle command Certain operations like `postCreateCommand` run non-interactive, non-login shells. Unfortunately, `nvm` is really particular that it needs to be "sourced" before it is used, which can only happen automatically with interactive and/or login shells. Fortunately, this is easy to work around: |