-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
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
Support deno #7108
Comments
Are there any plans to support Deno now? |
It would be cool but I don't personally have time to work on it. We'd accept contributions though if anyone is interested! |
Hi @devongovett would you have some time to provide some suggestions of the best way to go about implementing this support |
Just sharing that I tried using the NPM module on Deno v1.34.0 and it fails with a different error in case it's helpful:
|
Doesn't really look Parcel specific though, |
interesting, thank you for the input |
Hey folks, Bartek from the Deno team here. We're working through the problems one-by-one to support running Parcel in Deno. It appears we're really close on this one. I'll keep you posted. |
@bartlomieju Any update on this? I figured I'd give it a go just now, using the following custom import * as Parcel from "npm:@parcel/core";
const bundler = new Parcel.Parcel({
config: '.parcelrc',
targets: ['public/index.html']
});
bundler.run(); But got the following messages:
|
@arendjr I'm working on a fix for this bug, follow denoland/deno#20613 for updatesd. |
Any updates on this?:) |
deno deploy + parcel template pls |
🙋 feature request
Make parcel work with Deno.
🤔 Expected Behavior
@parcel/core
API with Deno.deno compile
.Because of that we don't need npm or yarn anymore do use parcel.
😯 Current Behavior
The CLI is only useable via npm and yarn.
If I use
@parcel/core
with Denoit fails:
💁 Possible Solution
@parcel/core
is able to run with Deno.🔦 Context
Deno provides a far better developer experience than node. I want to be able to build a website without using node or npm.
Because of Deno deploy I would like to be able to do server side rendering (SSR) with Deno via Parcel. With that I want to build #transitionalapps.
The text was updated successfully, but these errors were encountered: