Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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