-
Notifications
You must be signed in to change notification settings - Fork 72
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 code, drop more legacy stuff #158
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.
this PR looks like a good idea to me
This comment has been minimized.
This comment has been minimized.
This PR's a bit difficult to review since #159 was integrated. I just merged that one so if you rebase against |
Remove remainings of ExtractTextPlugin Move `css: false` to compilerOptions Remove externalDependencies, there's no such option anymore
I've got two conflicts rebasing! OMG! |
README.md
Outdated
}, | ||
extensions: ['.mjs', '.js', '.svelte'], | ||
mainFields: ['svelte', 'browser', 'module', 'main'] | ||
... |
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 think this was easier to paste into your webpack config when indented since it'd be indented there. I'd probably revert the indentation changes here and below
@@ -231,30 +255,6 @@ module.exports = { | |||
} | |||
``` | |||
|
|||
#### External Dependencies |
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.
why was this section removed?
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.
because externalDependencies option was removed ?
or this option is purely for webpack ?
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.
Ah, right you are 😄
Co-authored-by: Ben McCann <[email protected]>
Here's a branch for refactoring. I'll put some changes that I find reasonable here.
Get involved and tell me what you would want to see here.
Fixes #95, Closes #142, Closes #93, Closes #77