In my package.json I have this entry :
"runMe": "set AAA=3 && echo %AAA%"
which looks like that :
In general, I want to set env variable, and to read it at the next section...
I'm expecting to get in console: 3
But instead I get this %AAA% :
Question:
How can I get the echo to show 3? I prefer ( please) not to use third-party libraries.

