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
Using the { "scripts": { "dev": "nodenv .", "test": "nodenv -E test/.env test/test.js" } } seems rather unclear and not very comprehensive.
I tried registering the command for multiple windows users and errors arose. Subsequently, I found a more straightforward approach to running the package from the scripts: "scripts": { "dev": "**node-env-run app.js**", }
Using this format proved very simple to understand and easy to test out.
Please do well to consider making the change, or assign me the privilege to do so. Thanks.
The text was updated successfully, but these errors were encountered:
Using the
{ "scripts": { "dev": "nodenv .", "test": "nodenv -E test/.env test/test.js" } }
seems rather unclear and not very comprehensive.I tried registering the command for multiple windows users and errors arose. Subsequently, I found a more straightforward approach to running the package from the scripts:
"scripts": { "dev": "**node-env-run app.js**", }
Using this format proved very simple to understand and easy to test out.
Please do well to consider making the change, or assign me the privilege to do so. Thanks.
The text was updated successfully, but these errors were encountered: