Skip to content

Commit

Permalink
fix: try to exclude moker README change
Browse files Browse the repository at this point in the history
  • Loading branch information
hongaar committed Nov 24, 2022
1 parent d2814cb commit b17aea4
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
7 changes: 6 additions & 1 deletion .releaserc.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,12 @@
[
"@semantic-release/git",
{
"assets": ["CHANGELOG.md", "package.json", "packages/*/package.json"],
"assets": [
"CHANGELOG.md",
"package.json",
"packages/*/package.json",
"!packages/*/README.md"
],
"message": "chore(release): ${nextRelease.version}\n\n${nextRelease.notes}\n\n[skip ci]"
}
]
Expand Down
5 changes: 2 additions & 3 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,12 @@
],
"scripts": {
"start": "node moker.js",
"prepublishOnly": "yarn clean && yarn build",
"prepublishOnly": "yarn clean && yarn build && cp ../../README.md .",
"clean": "rm -rf dist && rm -rf types",
"build": "yarn clean && tsc",
"test": "jest",
"watch:build": "tsc --watch",
"watch:test": "jest --watch",
"postversion": "cp ../../README.md ."
"watch:test": "jest --watch"
},
"dependencies": {
"@mokr/core": "workspace:*",
Expand Down

0 comments on commit b17aea4

Please sign in to comment.