Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix bower global install command for CI
> Note: Unlike the `--global` flag in npm, `global` is a command which must > immediately follow `yarn`. Entering `yarn add global package-name` will add > the packages named `global` and `package-name` locally instead of adding > package-name globally. https://yarnpkg.com/lang/en/docs/cli/global/#toc-yarn-global --- I noticed this while working on #5919, where the following error was starting to show up in CI after converting to use yarn workspaces: ``` yarn add v1.13.0 error Running this command will add the dependency to the workspace root rather than the workspace itself, which might not be what you want - if you really meant it, make it explicit by running this command again with the -W flag (or --ignore-workspace-root-check). info Visit https://yarnpkg.com/en/docs/cli/add for documentation about this command. ```
- Loading branch information