Last active
October 21, 2019 15:50
-
-
Save Paul-Isache/c43a3727d40357783ad3c0a31fd410ad 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
#!/usr/bin/env node | |
const fs = require('fs'); | |
const path = require('path'); | |
const packageJSONPath = path.resolve(__dirname, "./package.json"); | |
const packageJSON = require(packageJSONPath); | |
packageJSON.bundleDependencies = Object.keys(packageJSON.dependencies); | |
const newPkgContents = JSON.stringify(packageJSON, null, 2); | |
fs.writeFileSync(packageJSONPath, newPkgContents); | |
console.log("Updated bundleDependencies"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment