@blueprintjs/[email protected]yarn add @blueprintjs/[email protected]
warning @blueprintjs/[email protected]: Invalid bin entry for "upgrade-blueprint-2.0.0-rename" (in "@blueprintjs/core").
warning @blueprintjs/[email protected]: Invalid bin entry for "upgrade-blueprint-3.0.0-rename" (in "@blueprintjs/core").
No warnings
Fix bin scripts
Related to https://github.com/yarnpkg/yarn/pull/7755. Yarn does not seem to allow dots in the bin script names:
"bin": {
"upgrade-blueprint-2.0.0-rename": "./scripts/upgrade-blueprint-2.0.0-rename.sh",
"upgrade-blueprint-3.0.0-rename": "./scripts/upgrade-blueprint-3.0.0-rename.sh"
},
Actually, it was fixed in https://github.com/yarnpkg/yarn/pull/7811. Upgrading to yarn 1.22 solves it.
nice, thanks for the update!