-
Notifications
You must be signed in to change notification settings - Fork 13
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
Buidler migration #59
base: master
Are you sure you want to change the base?
Conversation
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.
Thanks for doing this @sembrestels! I had a few questions to ask about before merging :)
@@ -7,20 +7,23 @@ node_modules | |||
*/**/coverage.json | |||
*/**/allFiredEvents | |||
*/**/scTopics | |||
|
|||
*/**/.coverage_* |
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.
Hmm, is this from the new solidity-coverage version? Can we remove some of the previous lines on ignoring the previous version's coverage output?
@@ -1,21 +1,31 @@ | |||
|
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.
Let's remove this extra newline :)
{ | ||
"presets": [ | ||
[ | ||
"@babel/preset-env", | ||
{ | ||
"modules": false, | ||
"targets": { |
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.
I forget exactly, but is the browserlist in the package.json enough or do we need to specify targets
here as well for @babel/present-env
?
const { usePlugin } = require('@nomiclabs/buidler/config') | ||
const hooks = require('./scripts/buidler-hooks') | ||
|
||
usePlugin('@aragon/buidler-aragon') |
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.
Since this plugin is not really in active development anymore, what do you think about removing any configuration or dependencies that rely on it? Or was this still essential to your workflow?
This PR includes the following changes:
.babelrc
file@aragon/contract-test-helpers
to@aragon/contract-helpers-test
MANAGE_POWER_SOURCE_ROLE
id in arapp.json fileCloses #56.