We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c744010 commit e8d72cbCopy full SHA for e8d72cb
1 file changed
ship.config.js
@@ -47,6 +47,13 @@ module.exports = {
47
48
// update version in packages & dependencies
49
exec(`lerna version ${version} --no-git-tag-version --no-push --yes`);
50
+
51
+ // @TODO: We can remove after initial npm release of `react-instantsearch-hooks`
52
+ // We update the Hooks package dependency in the example because Lerna doesn't
53
+ // and releasing fails because the Hooks package has not yet been released on npm.
54
+ exec(
55
+ `yarn workspace hooks-example upgrade react-instantsearch-hooks@${version}`
56
+ );
57
},
58
shouldPrepare: ({ releaseType, commitNumbersPerType }) => {
59
const { fix = 0 } = commitNumbersPerType;
0 commit comments