diff --git a/lerna.json b/lerna.json index 1cf3a65d..8b038c63 100644 --- a/lerna.json +++ b/lerna.json @@ -1,6 +1,9 @@ { "npmClient": "yarn", "packages": ["examples/*", "packages/*"], + "publish": { + "ignoreChanges": ["examples/**"] + }, "useWorkspaces": true, "version": "independent" } diff --git a/package.json b/package.json index 2c7b074f..1f37e8be 100644 --- a/package.json +++ b/package.json @@ -24,7 +24,7 @@ "test:examples": "lerna run test -- --passWithNoTests --watchAll=false", "ci": "yarn lint && yarn test:compat && yarn test:examples", "build": "lerna run build", - "bump": "lerna version -m 'Bump' --ignore-changes 'examples/**'", + "bump": "lerna version -m 'Bump' --no-git-tag-version --no-push", "postbump": "yarn build", "storybook": "start-storybook -p 6006", "build-storybook": "build-storybook -o docs"