-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Don't run the pre/post scripts #2891
Comments
Does this affect |
no, the standard lifecycle scripts like postinstall or prepublishOnly are not affected. |
but prepostinstall will not be executed. And postpostinstall as well. |
Is there are a way to enable it again? I think this is useful feature in some cases |
I don't see much value in it. You may just add It is not some action that you do frequently. Mostly you just add a script once and never change it. |
Makes sense |
May I disagree? |
I agree with @TigersWay! From my side: I don't want a yarn clone. |
if you need pre/post, you can get similar ergonomics + explicitness (which this changes aims to acheive) with https://github.com/mysticatea/npm-run-all ( |
@cdaringe does npm-run-all even work with pnpm? |
npm-run-all does work, yes. |
What a mess, this behavior is different to |
When working with Typescript projects, |
@davidenke, wrong attitude. you realize this software is offered to you for free? this unhelpful feedback is not welcome. @jmcdo29, here's a demo of a setup that could work for you. {
"scripts": {
"compile": "tsc index.ts",
"serve": "node index.js",
"start": "run-s compile serve"
},
"devDependencies": {
"npm-run-all": "^4.1.5",
"typescript": "^4.2.4"
}
} to see it in action, you can copy and paste the following command right into your terminal and run it! (assumes you are on a mac or *nix system) export DIR=/tmp/pnpm-scripts-demo \
&& rm -rf $DIR && mkdir -p $DIR \
&& cd $DIR \
&& echo "console.log(1+2)" > index.ts \
&& echo '{"scripts":{"compile":"tsc index.ts","serve":"node index.js","start":"run-s compile serve"},"devDependencies":{"npm-run-all":"^4.1.5","typescript":"^4.2.4"}}' > package.json \
&& pnpm install \
&& pnpm start $ pnpm start
@ start /private/tmp/pnpm-scripts-demo
> run-s compile serve
> @ compile /private/tmp/pnpm-scripts-demo
> tsc index.ts
> @ serve /private/tmp/pnpm-scripts-demo
> node index.js
3 |
I understand it could work, was just hoping to not have to add another dev dependency and work with yet another package. But if that's what I have to do then so be it. |
For what it's worth, this might be something good to document on the pnpm run page, as, up until v6 to my knowledge, pnpm mirrored npm's functionality, including running pre/post scripts of custom commands. As npm v7 still supports this, it's definitely a bit divergent from what I thought the functionality would be. I know the mention is in the changelog, but it would be nice to have it documented in the docs page as well, to help make it clearer. Just my two cents. |
@cdaringe I'm sorry to share @jmcdo29's idea about the "mess" which is for me still a somehow polite word. We are here part of this community and any of us can be surprised with such a change. |
In other words, "someone did something I don't agree with, so I can be rude." Insults and negativity--especially over something offered for free--are never productive. Consider sending patches, proposing solutions, debating pros and cons, etc. Complaining like this rude, and helps no one. Most of us are taught this from a young age, as it has nearly global acceptance, across cultures. For reasons not yet clear to me, software engineers, in issues trackers that are not their own, feel comfortable waiving this value in favor selfishness. Consider productive & helpful questions like:
|
And these was of course my last words here. |
@cdaringe maybe I'm missing something here. Yes there was a complaint about the functionality, but it wasn't just absurdly rude. Perhaps "mess" means something different to you than how I'm reading it. Either way, the dev did mention why they thought this (it's different than npm and unexpected) and mentioned a possible solution (using a You're right that in open source, complaining never gets anywhere, trust me, as a maintainer of NestJS and a few other packages I get that. It's one of the reasons I mentioned at the very least this should be well documented. pnpm stands for performant npm which is why so many of us are confused at this different functionality. If this is a design goal of pnpm, to be like npm, then this definitely would be something that is no longer aligned. I see where the yarn team is coming from (at least in regards to running accidental scripts), so maybe instead of just As I mentioned in my first comment on this thread I do find great use in these lifecycle scripts, and have been chasing why I've been having CI failures recently until I found that these scripts are no longer running. Now, it's my fault for using |
I was not personally offended. We for sure need to document it prominently.
To some extend. pnpm was named before Yarn existed😀 We try to pick the good ideas from both npm and from Yarn. And sometimes have our own way. This change aligns with our philosophy of being strict and explicit. We can come up with some features to make it easier. My personal favorite would be to bundle something like |
This topic has been argued about a lot but I wanted to voice my opinion on the matter since pnpm is a tool that I am passionately using and the only thing I dislike about it is the fact that it doesn't have more widespread adoption. Removing the implicit However, outright removing them and adding the configuration option I think is a bad solution too. The issue isn't their existence but their implicitness. The configuration should certainly be kept for backwards compatibility (to further grow pnpm as a drop-in for npm). But I agree with @stalniy and @jmcdo29 that the right approach is to simply remove the implicit nature by explicitly defining it as I love all that the PNPM team have done and I really hope to see this added. Since currently our two options are "use a third party script runner and define the behaviour yourself" and "use a configuration option that enables the bad implicit behaviour" Edit: added more Fortran examples and some words |
Adding |
I would like to note that it would be a breaking change for anyone that had scripts named with those prefixes or other purposes. so that should probably be an opt-in |
Knowing how many people's environments would break would be an extremely valuable metric for deciding on wether this change is too big of a change. However, I believe that the removal of the implicit hooks has had a significantly greater impact than the addition of Edit: some words Adding this as an Edit so no extra notifs are sent out but a perfectly acceptable alternative way would be a postfix of Also, the Colon has already taken off as the de facto way of deliminating scripts as seen by the very package.json#L11 that runs this project. |
It would be nice if the documentation covered exactly which scripts are standard lifecycle scripts that are not affected. I happened to care about postinstall, so my question is answered from this thread, but it's not super clear from the documentation that even this is true: https://pnpm.io/cli/run#differences-with-npm-run |
Ouch! This has seriously exploded me in the face today after migrating from npm to pnpm. I was expecting pnpm to be compatible with npm... |
@slavafomin you can use pnpm for installation and still use npm for running scripts |
configure |
Ouch, surprised by this too since impression was it has parity with Added this to the docs since migrations could be severely messed up: pnpm/pnpm.io#495 |
I think it will make less surprises if pnpm switch the configuration from |
agreed. every single one of my repos has that turned back on. |
GTP: Mental models serve as the mind's map, charting the terrain of our expectations and experiences to navigate the world more effectively. They help us predict how systems should work, like expecting scripts named pre and post to automatically run before and after a command in package management tools. However, when pnpm deviates from this convention by disabling pre and post scripts by default, it's akin to finding a suddenly missing bridge on a well-traveled route—jarring and disorienting, forcing us to recalibrate our mental maps and adapt to this unexpected twist in the script. |
It will be reverted in v9 |
NOTE: It is possible to return how pre/post scripts worked by setting the
enable-pre-post-scripts
setting totrue
(since v6.1.0)When running
pnpm run foo
, don't run theprefoo
script and thepostfoo
script.Yarn 2 already deprecated the pre/post scripts:
https://yarnpkg.com/advanced/lifecycle-scripts
The text was updated successfully, but these errors were encountered: