1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-29 16:30:56 -05:00
denoland-deno/tests/testdata/npm/different_nested_dep/main.js

6 lines
153 B
JavaScript
Raw Normal View History

import dep from "@denotest/different-nested-dep";
import childDep from "@denotest/different-nested-dep-child";
console.log(dep);
console.log(childDep);