Skip to content

Commit

Permalink
fix expected output on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanwhit committed Nov 8, 2024
1 parent e983b07 commit 9a6b13b
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
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]

0 comments on commit 9a6b13b

Please sign in to comment.