-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
enable on cennznet extension #25
base: master
Are you sure you want to change the base?
Conversation
eea4ead
to
db1cfac
Compare
.eslintrc.js
Outdated
@@ -12,7 +12,8 @@ module.exports = { | |||
'.yarn/**', | |||
'**/build/*', | |||
'**/coverage/*', | |||
'**/node_modules/*' | |||
'**/node_modules/*', | |||
'**/config.ts' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
just checking which file were you planning to exclude?
packages/extension-chains/src/config.ts
still included
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
excluded it... had few listing err in it... mostly related to sort-key in types..
but in case of enum we don't really want to sort...hv added at the top of the file /* eslint sort-keys: 0 */
.github/workflows/publish.yml
Outdated
run: | | ||
echo "//registry.npmjs.org/:_authToken=${NPM_KEY}" > ~/.npmrc | ||
echo 'Publishing to npmjs.org.' | ||
npx lerna exec -- 'cd build && npm publish --access public' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can add --dry-run
if you want to test the CI before publishing
npx lerna exec -- 'cd build && npm publish --access public' | |
npx lerna exec -- 'cd build && npm publish --access public' |
No description provided.