-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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
1.6.0: node-rdkafka@2.2.1 rebuilt every time anything is installed #5680
Comments
This happens for me on OSX as well 😿 Update 1 My previous fix for #932 ensured that differences in build artifacts tracked in the In this case, it seems like a bunch of build artifacts for Many files do get added, but a bunch named Update 2 OK It looks like the build process for that package deletes the files I mentioned above. They exist and are shipped with the package .tgz (probably incorrectly. why would you ship When yarn finds files that are in the package's .tgz that are missing from |
I've been reading all the way from #932 via other related issues to this one, and I'm really looking forward to the speedups related to compiling native modules, especially when used together with electron. Hopefully #5314 (comment) just works for me already :) (EDIT: it does!) Will try that and if I don't come back with specific issues, consider this comment a big Thank You for working on this! 🎉 PS: Not related to Yarn, but to my Electron-plus-native-modules issue: Together with Yarn's experimental caching, I ended up wrapping PS 2: Wrapper (in minimal example project) published at https://github.com/felixrabe/e-2018-065-yarn-better-sqlite3-electron. |
So I guess this "fix" for this case will have to be tracking deleted files in the yarn integrity artifacts list. If anyone is willing to work up a PR, we would appreciate it. |
node-sass is always recompiling after any Here you find my package.json for node-sass {
"name": "webpack",
"version": "1.0.0",
"main": "dist",
"license": "MIT",
"scripts": {
"clean": "shx rm -r dist",
"prebuild": "yarn clean",
"postbuild": "yarn all-test",
"build": "rm -R dist && tsc",
"all-test": "yarn test && yarn e2e",
"test": "jest --config jest-ut.config.js",
"e2e": "yarn e2e-plain-webpack && yarn e2e-angular",
"e2e-plain-webpack": "jest --config jest-e2e-plainwebpack.config.js",
"e2e-angular": "jest --config jest-e2e-angular.config.js",
"set-follow-symlinks-watcher": "sed -i 's/followSymlinks: false/followSymlinks: true/g' node_modules/watchpack/lib/DirectoryWatcher.js",
"push": "npm version patch && git push && git push --tags",
"publish": "tsc && npm publish --access public"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.13.3",
"@angular/core": "^7.2.7",
"@types/globby": "^8.0.0",
"@types/jest": "^24.0.9",
"@types/node": "^11.9.5",
"@types/parse5": "^5.0.0",
"@types/webpack": "^4.4.25",
"clean-webpack-plugin": "^1.0.1",
"jest": "^24.1.0",
"jest-expect-message": "^1.0.2",
"micromatch": "^3.1.10",
"p-each-series": "^1.0.0",
"parse5": "^5.1.0",
"shx": "^0.3.2",
"ts-jest": "^24.0.0",
"ts-node": "^8.0.2",
"ts-util-is": "^1.1.3",
"typescript": "^3.3.3333",
"webpack": "^4.29.5",
"webpack-cli": "^3.2.3"
},
"dependencies": {
"@angular-devkit/core": "^7.3.3",
"@ud-angular-builders/custom-webpack-7": "^7.5.1",
"@upradata/browser-util": "^1.0.11",
"@upradata/node-util": "^2.0.2"
},
"majestic": {
"jestConfig": "jest-ut.config.js"
}
}
|
openssl needs to be rebuilt after every yarn install
btw I'm finding c++ projects can be fairly organized with yarn and package json's. Independent of IDE's |
this can get especially frustrating when working with global packages like Also I got so fed up with |
@rally25rs I don't guess it's possible to turn off integrity checks for cases like this? Personally I would rather yarn never ever touch a package directory within It's kind of a classic case of how solutions usually create other problems and everything is a tradeoff... |
Closing as fixed in v2 where the tracking of what needs to be rebuilt has been greatly improved |
Do you want to request a feature or report a bug?
bug
What is the current behavior?
node-rdkafka@2.2.1
is rebuilt if installingfive
.If the current behavior is a bug, please provide the steps to reproduce.
See below.
What is the expected behavior?
Installing
five
does not cause a rebuild of node-rdkafka.Please mention your node.js, yarn and operating system version.
Description
This is a follow-up issue to #932. yarn 1.6.0 seem like a big step in the right direction! Thanks! I have one really odd case where the "native modules always rebuilt" problem still persists, though.
In short, if I install
node-rdkafka@2.2.1
(that exact version) and thenfive
(which depends on nothing and nothing depends on), node-rdkafka is rebuilt unnecessarily.The strange thing is that if I install any later version of node-rdkafka, such as 2.3.2, everything works as expected (no rebuild)!
Steps to reproduce:
I've tried this on two different computers, one of which I had never installed node-rdkafka on before.
I apologize if this turns out not to be a problem with yarn after all. But considering the number of people interested in #932 I think it can be good to have an answer in this issue tracker that people might find. Thanks!
The text was updated successfully, but these errors were encountered: