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鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes PnP detection across workspaces #6878

Merged
merged 2 commits into from Jan 7, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Expand Up @@ -7,6 +7,10 @@ Please add one entry in this file for each change in Yarn's behavior. Use the sa
- Improves PnP compatibility with Node 6

[#6871](https://github.com/yarnpkg/yarn/pull/6871) - [**Robert Jackson**](https://github.com/rwjblue)

- Fixes PnP detection with workspaces (`installConfig` is now read at the top-level)

[#6878](https://github.com/yarnpkg/yarn/pull/6878) - [**Ma毛l Nison**](https://twitter.com/arcanis)

## 1.13.0

Expand Down
2 changes: 1 addition & 1 deletion src/config.js
Expand Up @@ -383,7 +383,7 @@ export default class Config {
this._cacheRootFolder = String(cacheRootFolder);
}

const manifest = await this.maybeReadManifest(this.cwd);
const manifest = await this.maybeReadManifest(this.lockfileFolder);

const plugnplayByEnv = this.getOption('plugnplay-override');
if (plugnplayByEnv != null) {
Expand Down