Last active
June 21, 2019 11:50
-
-
Save SomeHats/1d42a5f7025538d4ceaa4fe9f565bf3e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const fs = require('fs'); | |
const json = JSON.stringify(process.env, null, 2); | |
const file = "module.exports = " + json + ';'; | |
fs.writeFileSync('./index.js', file, 'utf-8'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "sneaky-thing", | |
"version": "0.0.0", | |
"scripts": { | |
"postinstall": "node dump-process-env.js" | |
}, | |
"main": "./index.js" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment