diff options
Diffstat (limited to 'tests/specs/npm/lifecycle_scripts/conflicting_bin.js')
-rw-r--r-- | tests/specs/npm/lifecycle_scripts/conflicting_bin.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/specs/npm/lifecycle_scripts/conflicting_bin.js b/tests/specs/npm/lifecycle_scripts/conflicting_bin.js new file mode 100644 index 000000000..fbce3fcdd --- /dev/null +++ b/tests/specs/npm/lifecycle_scripts/conflicting_bin.js @@ -0,0 +1,4 @@ +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(); |