It would be great if it was possible to set the NODE_ENV variable with this plugin. I tried like this but did not work: ``` task installNPM(type: NodeJsTask) { require = ["npm"] executable = "npm" args = ['NODE_ENV=production', 'install', '--no-save'] } ```