mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
ec968aa5ae
Fixes https://github.com/denoland/deno/issues/26509. Ended up being a `deno_graph` bug causing the error to surface. This PR updates `deno_graph` to pick up the fix and reverts the temporary workaround that skipped JSON exports.
7 lines
270 B
TypeScript
7 lines
270 B
TypeScript
import { add } from "@denotest/multiple-exports/add";
|
|
import { subtract } from "@denotest/multiple-exports/subtract";
|
|
import data from "@denotest/multiple-exports/data-json" with { type: "json" };
|
|
|
|
console.log(add(1, 2));
|
|
console.log(subtract(1, 2));
|
|
console.log(data);
|