mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
543c687c34
Currently we only warn once. With this PR, we continue to warn about not-run scripts on explicit `deno install` (or cache). For `run` (or other subcommands) we only warn the once, as we do currently.
6 lines
392 B
Text
6 lines
392 B
Text
Warning The following packages contained npm lifecycle scripts (preinstall/install/postinstall) that were not executed:
|
|
┠─ npm:@denotest/node-lifecycle-scripts@1.0.0
|
|
┃
|
|
┠─ This may cause the packages to not work correctly.
|
|
┖─ To run lifecycle scripts, use the `--allow-scripts` flag with `deno install`:
|
|
deno install --allow-scripts=npm:@denotest/node-lifecycle-scripts@1.0.0
|