-
Notifications
You must be signed in to change notification settings - Fork 38
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
Add Next.js and Vite examples #290
Conversation
f8b6dfd
to
ba1d223
Compare
c5314b2
to
dc3349d
Compare
examples/with-vite/index.html
Outdated
@@ -0,0 +1,21 @@ | |||
<!DOCTYPE html> | |||
<html lang="en"> | |||
<head> |
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.
Missing styles.css
.
examples/with-parcel/package.json
Outdated
@@ -1,7 +1,8 @@ | |||
{ | |||
"name": "community", | |||
"type": "module", | |||
"name": "with-parcel", |
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.
Doesn't support exports
.
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.
See #307 (comment) and parcel-bundler/parcel#4155.
419be92
to
d4f449e
Compare
I removed Remix currently does not support polyfilling (remix-run/remix#114) and requires manual patching of their compiler. |
* rename community to with-parcel * add with-next example * update example names and unify configs * add vite example * use new JSX transform in examples * disable necessary eslint rules for examples * add next output to prettierignore * add remix example * update engines in package.json * remove readme from with-next example * update vite example * update with-next example * remove with-remix example
To see whether the component is compatible with other frameworks, I would love to add a couple of more additional frameworks to the current Parcel example.
Remix(see Add Next.js and Vite examples #290 (comment))Our goal is to provide a seamless developer experience, so this should help us with that.