I've got the following scripts in my root package.json in my lerna repo:
"scripts": { "lerna:changed": "npx lerna changed", "lerna:diff": "npx lerna diff", "lerna:publish": "npx lerna publish" }After running npm run lerna:publish I see a gitHead key in my package.json file of all packages (not the root.json). This becomes a big problem when it c...