1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-28 16:20:57 -05:00
denoland-deno/tests/specs/npm/lifecycle_scripts/conflicting_bin.js

5 lines
188 B
JavaScript
Raw Permalink Normal View History

import { sayBetterHello } from "npm:@denotest/better-say-hello@1.0.0";
import { sayHelloOnInstall } from "npm:@denotest/say-hello-on-install@1.0.0";
sayBetterHello();
sayHelloOnInstall();