-
Notifications
You must be signed in to change notification settings - Fork 192
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
refactor: cleans up scripts folder #557
Conversation
console.log('Removing previously generated ABIs.\n') | ||
rmSync('./src/lib/abi/', { recursive: true }) | ||
} | ||
console.log('Removing previously generated ABIs.\n') |
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.
force: true
doesn't need to check if it exists.
@@ -56,7 +56,7 @@ jobs: | |||
- name: Lint sdk | |||
run: | | |||
yarn gen:abi | |||
yarn build --reporter-options output=$TEST_PATH/sdk.xml | |||
yarn build |
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.
this wasn't actually doing anything as far as I can tell. we don't need it.
it also fails using the inline commands, rather than the build script which was perhaps needed in the past but is unnecessary indirection now.
testSetup
to/tests
folder