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"); |