Skip to content

Commit

Permalink
Ignore certain files when deciding what needs an update. (#93)
Browse files Browse the repository at this point in the history
Also only allow publishing from master.
  • Loading branch information
aomarks committed Apr 20, 2018
1 parent f14de16 commit d6cd0c3
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion lerna.json
Expand Up @@ -3,5 +3,18 @@
"packages": [
"packages/*"
],
"version": "independent"
"version": "independent",
"command": {
"publish": {
"allowBranch": ["master"],
"ignoreChanges": [
".clang-format",
".gitignore",
".travis.yml",
"README.md",
"appveyor.yml",
"tslint.json"
]
}
}
}

0 comments on commit d6cd0c3

Please sign in to comment.