Skip to content

Commit

Permalink
chore: fix rc publishing (#119)
Browse files Browse the repository at this point in the history
Lerna doesn't work with npm automation tokens out of the box, need
to disable auth verification for the time being.

Refs: lerna/lerna#2788
  • Loading branch information
achingbrain authored Feb 18, 2021
1 parent 40e70a3 commit cf4b2b8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ yarn.lock
**/*.log
test/repo-tests*
**/bundle.js
package-lock.json

# Logs
logs
Expand Down
3 changes: 2 additions & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@
"publish": {
"message": "chore: publish",
"conventionalCommits": true,
"createRelease": "github"
"createRelease": "github",
"verifyAccess": false
}
}
}

0 comments on commit cf4b2b8

Please sign in to comment.