-
Notifications
You must be signed in to change notification settings - Fork 114
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
chore(babel-preset): Consolidate Babel configs #871
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.
One high level question. If it's green locally and on Circle, I'm a fan 👏
@@ -8,6 +8,7 @@ | |||
"version": "1.0.1", | |||
"scripts": { | |||
"build": "lerna run build", | |||
"create-dependency-hash": "cat yarn.lock > .dependency-hash && ls ./packages >> .dependency-hash", |
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.
💯
packages/babel-preset/package.json
Outdated
"url": "https://github.com/Autodesk/hig" | ||
}, | ||
"main": "index.js", | ||
"peerDependencies": { |
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.
Not a true dependency?
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.
You're right, we don't want to have to list each plugin and preset as a devDependency
for each package.
However, if we want to be certain that it's using the correct plugin, we should import them directly similar to how Airbnb does it. We don't need to do that right now though.
No description provided.