πAutomatic discovery of ports
Examples of resolutions that denoify can perform automatically
Input
// src/foo.ts
import { assertΒ } from "tsafe/assert";
import type { Equals } from "tsafe";
import * as ns from "my-dummy-npm-and-deno-module";
import { CatΒ } from "my-dummy-npm-and-deno-module/dist/lib/Cat";
import { createLexer } from "leac";Output
// deno_dist/foo.ts
import {Β assert } from "https://deno.land/x/tsafe@v0.10.1/assert.ts";
import type {Β Equals } from "https://deno.land/x/tsafe@v0.10.1/mod.ts";
import * as ns from "https://deno.land/x/my_dummy_npm_and_deno_module@v0.4.3/mod.ts";
import { Cat } from "https://deno.land/x/my_dummy_npm_and_deno_module@v0.4.3/lib/Cat.ts";
import { createLexer } from "https://deno.land/x/leac/v0.6.0/mod.ts";Troubleshooting
Last updated
Was this helpful?