Skip to content

Commit cf4b2b8

Browse files
authored
chore: fix rc publishing (#119)
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
1 parent 40e70a3 commit cf4b2b8

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ yarn.lock
44
**/*.log
55
test/repo-tests*
66
**/bundle.js
7+
package-lock.json
78

89
# Logs
910
logs

lerna.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@
1414
"publish": {
1515
"message": "chore: publish",
1616
"conventionalCommits": true,
17-
"createRelease": "github"
17+
"createRelease": "github",
18+
"verifyAccess": false
1819
}
1920
}
2021
}

0 commit comments

Comments
 (0)