Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improved docs to resolve AB#888257 #133

Merged
merged 5 commits into from
May 14, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions doc/runtimes/nodejs.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,16 @@ If a `yarn.lock` file is found in your repo root or if you specify "yarn" in
the `engines` field of package.json, the latest or specified version of yarn
will be used instead of npm.

Note that **installing packages globally is unsupported**, whether requested directly
dorfire marked this conversation as resolved.
Show resolved Hide resolved
by your app or by some pre/post install script of an included package. For example,
this will **not** work in your `package.json`:

```json
"scripts" : {
"preinstall" : "npm install -g somepackage"
}
```

# Run

The following process is applied to determine how to start an app.
Expand Down