Skip to content

Commit

Permalink
Fixes PnP detection across workspaces (#6878)
Browse files Browse the repository at this point in the history
* Fixes PnP detection across workspaces

* Update CHANGELOG.md
  • Loading branch information
arcanis committed Jan 7, 2019
1 parent b1f21a8 commit 6c41eb1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
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

0 comments on commit 6c41eb1

Please sign in to comment.