File tree Expand file tree Collapse file tree 2 files changed +25
-1
lines changed
packages/plugin-pnpm/sources Expand file tree Collapse file tree 2 files changed +25
-1
lines changed Original file line number Diff line number Diff line change
1
+ releases :
2
+ " @yarnpkg/cli " : patch
3
+ " @yarnpkg/plugin-pnpm " : patch
4
+
5
+ declined :
6
+ - " @yarnpkg/plugin-compat"
7
+ - " @yarnpkg/plugin-constraints"
8
+ - " @yarnpkg/plugin-dlx"
9
+ - " @yarnpkg/plugin-essentials"
10
+ - " @yarnpkg/plugin-init"
11
+ - " @yarnpkg/plugin-interactive-tools"
12
+ - " @yarnpkg/plugin-nm"
13
+ - " @yarnpkg/plugin-npm-cli"
14
+ - " @yarnpkg/plugin-pack"
15
+ - " @yarnpkg/plugin-patch"
16
+ - " @yarnpkg/plugin-pnp"
17
+ - " @yarnpkg/plugin-stage"
18
+ - " @yarnpkg/plugin-typescript"
19
+ - " @yarnpkg/plugin-version"
20
+ - " @yarnpkg/plugin-workspace-tools"
21
+ - " @yarnpkg/builder"
22
+ - " @yarnpkg/core"
23
+ - " @yarnpkg/doctor"
Original file line number Diff line number Diff line change @@ -315,8 +315,9 @@ function getStoreLocation(project: Project) {
315
315
function getPackagePaths ( locator : Locator , { project} : { project : Project } ) {
316
316
const pkgKey = structUtils . slugifyLocator ( locator ) ;
317
317
const storeLocation = getStoreLocation ( project ) ;
318
+ const pkgPath = structUtils . stringifyIdent ( locator ) as PortablePath ;
318
319
319
- const packageLocation = ppath . join ( storeLocation , pkgKey , `package` ) ;
320
+ const packageLocation = ppath . join ( storeLocation , pkgKey , pkgPath ) ;
320
321
const dependenciesLocation = ppath . join ( storeLocation , pkgKey , Filename . nodeModules ) ;
321
322
322
323
return { packageLocation, dependenciesLocation} ;
You can’t perform that action at this time.
0 commit comments