Skip to content

Commit

Permalink
fix: run nr dev scripts concurrently on windows
Browse files Browse the repository at this point in the history
`nr dev` runs tsup in watch mode and eslint-flat-config-viewer. Both commands run indefinitely and therefore need to be executed concurrently. I assume that this is achieved by the & sign on Unix-based systems, however on my Windows system only the first command is executed.

This is fixed by enabling shell-emulator as suggested in antfu#284 by @antfu.
  • Loading branch information
janfrl committed Oct 17, 2023
1 parent 2efb730 commit 7cc21f4
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
strict-peer-dependencies=false
shamefully-hoist=true
ignore-workspace-root-check=true
shell-emulator=true

0 comments on commit 7cc21f4

Please sign in to comment.