Skip to content
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

Accept URL imports #7

Closed
thgh opened this issue Jun 28, 2020 · 5 comments
Closed

Accept URL imports #7

thgh opened this issue Jun 28, 2020 · 5 comments

Comments

@thgh
Copy link

thgh commented Jun 28, 2020

I may not be using denoify as intended because I had already replaced soms imports with URLs, so I got this:

import ipaddr from "https://jspm.dev/ipaddr.js DENOIFY: DEPENDENCY UNMET (BUILTIN)";
@garronej
Copy link
Owner

Hello @thgh
Could you point me to the repo where you are trying to setup Denoify?

Otherwise, it is a small issue.

Just leave

import ipaddr from "ipaddr.js"

In your src files and add this to your package.json:

{
  "dependencies": {
    "ipaddr.js": "^1.1.0"
  },
  "denoPorts": {
    "ipaddr.js": "https://raw.githubusercontent.com/whitequark/ipaddr.js/master/lib/ipaddr.js"
  }
}

The result should be that when you run npx denoify the import should be replaced in deno_dist by

import ipaddr from "https://raw.githubusercontent.com/whitequark/ipaddr.js/v1.1.0/lib/ipaddr.js";

( assuming the version of ipaddr.js you had installed in your node module is the 1.1.0 at the time when you run `denoify. Denoify will try to find the right version )

Let me know if it works, otherwise I should be able to fix a PR for you.

Regards

@garronej
Copy link
Owner

And by the way, there is an update coming soon that should bring out of the box support for ipaddr.js and many other modules.

@thgh
Copy link
Author

thgh commented Jun 29, 2020

Cool, I was trying out denoify to port a nodejs project to deno: lithdew/flatend#8
But it's a one time thing so not really what denoify was made for. Still, it would make sense that if you run denoify over a deno codebase that it would not change anything.

@garronej
Copy link
Owner

Ok noted. 👍

@garronej
Copy link
Owner

Done

gitbook-com bot pushed a commit that referenced this issue Aug 11, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants