I have a shared JSON on vault for a React app like this one:
{
    "REACT_APP_SOME_ENV": "some value",
    "REACT_APP_SOME_ENV2": "some value2",
}
How could I use it as the .env file?
Right now I'm just copy pasting each value as a regular .env file:
REACT_APP_SOME_ENV=some value
REACT_APP_SOME_ENV2=some value2
But that's not the idea, that file changes a lot.
Any npm tools or something?
 
    