How to get pnpm store directoryHow to remove a package from pnpm store, or force re-download it?How do I use pnpm in my Angular project to manage packages?How to migrate a project from npm to pnpmpnpm - Do node_modules directories occupy the same space in disk?How to use my old shrinkwrap.yaml with pnpm 3.0?
How do pilots align the HUD with their eyeballs?
Quick Yajilin Puzzles: Scatter and Gather
Is there a recurrence relation which has no closed formula?
Golf (6-card) Golf!
Where can I find historic TLE?
Hangman Game (YAHG)
Carry vs Roll-Down on a zero-coupon IRS
Is there something that can completely prevent the effects of the Hold Person spell?
Does "as soon as" imply simultaneity?
Is it impolite to ask for halal food when traveling to and in Thailand?
Why solving a differentiated integral equation might eventually lead to erroneous solutions of the original problem?
Why weren't the Death Star plans transmitted electronically?
On the meaning of 'anyways' in "What Exactly Is a Quartz Crystal, Anyways?"
My manager quit. Should I agree to defer wage increase to accommodate budget concerns?
How do you use the interjection for snorting?
Does every piano need tuning every year?
I am 15 years old and do not go to a Yeshiva but would like to learn Talmud. A few rabbis near me said they could teach me. How should I start
Is it impolite to ask for an in-flight catalogue with no intention of buying?
How to justify a team increase when the team is doing good?
Safe to use 220V electric clothes dryer when building has been bridged down to 110V?
Why does (inf + 0j)*1 evaluate to inf + nanj?
Subverting the emotional woman and stoic man trope
Difference between types of yeast
practicality of 30 year fix mortgage at 55 years of age
How to get pnpm store directory
How to remove a package from pnpm store, or force re-download it?How do I use pnpm in my Angular project to manage packages?How to migrate a project from npm to pnpmpnpm - Do node_modules directories occupy the same space in disk?How to use my old shrinkwrap.yaml with pnpm 3.0?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
Is there any way how to check directory/path of pnpm store?
I know you can set it with npm config set store /path/to/.pnpm-store
, but npm config get store
in my case returns undefined
, which I guess means to pnpm to use some default, but where can I find this default value?
pnpm
add a comment
|
Is there any way how to check directory/path of pnpm store?
I know you can set it with npm config set store /path/to/.pnpm-store
, but npm config get store
in my case returns undefined
, which I guess means to pnpm to use some default, but where can I find this default value?
pnpm
add a comment
|
Is there any way how to check directory/path of pnpm store?
I know you can set it with npm config set store /path/to/.pnpm-store
, but npm config get store
in my case returns undefined
, which I guess means to pnpm to use some default, but where can I find this default value?
pnpm
Is there any way how to check directory/path of pnpm store?
I know you can set it with npm config set store /path/to/.pnpm-store
, but npm config get store
in my case returns undefined
, which I guess means to pnpm to use some default, but where can I find this default value?
pnpm
pnpm
asked Mar 28 at 17:36
mauron85mauron85
7128 silver badges19 bronze badges
7128 silver badges19 bronze badges
add a comment
|
add a comment
|
1 Answer
1
active
oldest
votes
Seems like as of v3.0.1, you cannot get it. pnpm should probably update pnpm get store
so that it returns the default location.
As of v3, the pnpm store is located at ~/.pnpm-store
by default.
You could also open the file node_modules/.modules.yaml
in your project. It will contain a field called "store" with the location of the store that was used to hardlink packages to your project.
add a comment
|
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/4.0/"u003ecc by-sa 4.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55403775%2fhow-to-get-pnpm-store-directory%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Seems like as of v3.0.1, you cannot get it. pnpm should probably update pnpm get store
so that it returns the default location.
As of v3, the pnpm store is located at ~/.pnpm-store
by default.
You could also open the file node_modules/.modules.yaml
in your project. It will contain a field called "store" with the location of the store that was used to hardlink packages to your project.
add a comment
|
Seems like as of v3.0.1, you cannot get it. pnpm should probably update pnpm get store
so that it returns the default location.
As of v3, the pnpm store is located at ~/.pnpm-store
by default.
You could also open the file node_modules/.modules.yaml
in your project. It will contain a field called "store" with the location of the store that was used to hardlink packages to your project.
add a comment
|
Seems like as of v3.0.1, you cannot get it. pnpm should probably update pnpm get store
so that it returns the default location.
As of v3, the pnpm store is located at ~/.pnpm-store
by default.
You could also open the file node_modules/.modules.yaml
in your project. It will contain a field called "store" with the location of the store that was used to hardlink packages to your project.
Seems like as of v3.0.1, you cannot get it. pnpm should probably update pnpm get store
so that it returns the default location.
As of v3, the pnpm store is located at ~/.pnpm-store
by default.
You could also open the file node_modules/.modules.yaml
in your project. It will contain a field called "store" with the location of the store that was used to hardlink packages to your project.
answered Mar 29 at 9:25
Zoltan KochanZoltan Kochan
1,05611 silver badges22 bronze badges
1,05611 silver badges22 bronze badges
add a comment
|
add a comment
|
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55403775%2fhow-to-get-pnpm-store-directory%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown