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
{
"scripts": {
"_echo": "echo Hello $HELLO",
"hello": "dotenvx run -- npm run _echo"
}
}
However this solution doesn't work on Windows 11 as the syntax for Windows is %HELLO% rather than $HELLO. Running npm run hello on Windows only output:
Hello $HELLO
which is not what we want.
Expected behavior: Given that cross platform is one of dotenvx's selling points, is it possible to make the above example work on Windows?