You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When entering this command, npm exec --no babel --watch src --out-dir dist, the output is all of the compiled files in text, which is the behaviour of npm exec --no babel src. This command, npm exec --no -c "babel --watch src --out-dir dist" has to be run for the expected behaviour.
Expected Behavior:
Console Output of Successfully compiled 21 files with Babel.
All scripts are compiled and output to the dist directory
Steps To Reproduce:
In this environment, run npm exec --no babel --watch src --out-dir dist
See console output of compiled files as text
Environment:
OS: Windows 10 Home v1909
Node: 15.4.0
npm: 7.1.2
@babel/cli: 7.12.10
@babel/core: 7.12.10
The text was updated successfully, but these errors were encountered:
Current Behavior:
When entering this command,
npm exec --no babel --watch src --out-dir dist
, the output is all of the compiled files in text, which is the behaviour ofnpm exec --no babel src
. This command,npm exec --no -c "babel --watch src --out-dir dist"
has to be run for the expected behaviour.Expected Behavior:
Console Output of
Successfully compiled 21 files with Babel
.All scripts are compiled and output to the
dist
directorySteps To Reproduce:
npm exec --no babel --watch src --out-dir dist
Environment:
The text was updated successfully, but these errors were encountered: