-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e983b07
commit 9a6b13b
Showing
2 changed files
with
15 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,12 @@ | |
}, | ||
"separate_steps": { | ||
"steps": [ | ||
{ "args": "install", "output": "install_warn.out" }, | ||
{ "if": "unix", "args": "install", "output": "install_warn.out" }, | ||
{ | ||
"if": "windows", | ||
"args": "install", | ||
"output": "install_warn_windows.out" | ||
}, | ||
{ | ||
"args": "install --allow-scripts", | ||
"output": "Initialize @denotest/[email protected]: running 'install' script\n" | ||
|
9 changes: 9 additions & 0 deletions
9
tests/specs/npm/bin_entry_created_by_lifecycle/install_warn_windows.out
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
Download http://localhost:4260/@denotest%2fbin-created-by-lifecycle | ||
Download http://localhost:4260/@denotest/bin-created-by-lifecycle/1.0.0.tgz | ||
Initialize @denotest/[email protected] | ||
Warning The following packages contained npm lifecycle scripts (preinstall/install/postinstall) that were not executed: | ||
┠─ npm:@denotest/[email protected] | ||
┃ | ||
┠─ 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/[email protected] |