Skip to content

Commit 86b7607

Browse files
committed
Use lerna.json to configure ignored packages.
1 parent 79897b4 commit 86b7607

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

lerna.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
{
22
"npmClient": "yarn",
33
"packages": ["examples/*", "packages/*"],
4+
"publish": {
5+
"ignoreChanges": ["examples/**"]
6+
},
47
"useWorkspaces": true,
58
"version": "independent"
69
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"test:examples": "lerna run test -- --passWithNoTests --watchAll=false",
2525
"ci": "yarn lint && yarn test:compat && yarn test:examples",
2626
"build": "lerna run build",
27-
"bump": "lerna version -m 'Bump' --ignore-changes 'examples/**'",
27+
"bump": "lerna version -m 'Bump' --no-git-tag-version --no-push",
2828
"postbump": "yarn build",
2929
"storybook": "start-storybook -p 6006",
3030
"build-storybook": "build-storybook -o docs"

0 commit comments

Comments
 (0)