-
-
Notifications
You must be signed in to change notification settings - Fork 508
Reduce extra deps more #699
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
Conversation
|
Still WIP, there are more them |
| @@ -1,5 +1,3 @@ | |||
| @value toggleTime: 200ms; | |||
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.
No need to use postcss-icss-values for the only one value, if we want in future to have variables, better to use CSS custom properties
| const path = require("path"); | ||
| const { readFileSync } = require("fs"); | ||
| const globby = require("globby"); | ||
| const { globSync } = require("tinyglobby"); |
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.
tinyglobby has less deps
| "autoprefixer": "10.2.5", | ||
| "babel-eslint": "10.1.0", | ||
| "babel-loader": "9.2.1", | ||
| "babel-plugin-lodash": "3.3.4", |
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.
We don't use lodash at all right now, so we don't need outdated plugin
|
@valscion ready to review, the next steps:
After this we can make a new releases with our new code |
valscion
left a comment
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.
Looks good, thank you!
Summary
reduce unnecessary deps
What kind of change does this PR introduce?
refactor
Did you add tests for your changes?
Existing
Does this PR introduce a breaking change?
No
If relevant, what needs to be documented once your changes are merged or what have you already documented?
Nothing