|
| 1 | +import * as fs from 'node:fs' |
| 2 | + |
| 3 | +/** |
| 4 | + * Adds a new NPM script to the generated package.json file. |
| 5 | + * The new script invokes another existing script with the package manager used by the developer, |
| 6 | + * and is placed directly after the referenced NPM script. |
| 7 | + * @param {string} scriptName the name of the new NPM script |
| 8 | + * @param {string} packageManager the name of the used package manager, e.g. npm, pnpm or yarn |
| 9 | + * @param {string} invokedScriptName the name of the invoked NPM script |
| 10 | + * @param {string} packageJsonPath the path of the destination package.json file |
| 11 | + */ |
| 12 | +function addNpmScript( |
| 13 | + scriptName: string, |
| 14 | + packageManager: string, |
| 15 | + invokedScriptName: string, |
| 16 | + packageJsonPath: string |
| 17 | +) { |
| 18 | + const packageJson = JSON.parse(fs.readFileSync(packageJsonPath, 'utf-8')) |
| 19 | + const command = |
| 20 | + packageManager === 'npm' |
| 21 | + ? `npm run ${invokedScriptName}` |
| 22 | + : `${packageManager} ${invokedScriptName}` |
| 23 | + packageJson.scripts = Object.entries(packageJson.scripts).reduce((result, entry) => { |
| 24 | + result[entry[0]] = entry[1] |
| 25 | + if (entry[0] === invokedScriptName) { |
| 26 | + result[scriptName] = command |
| 27 | + } |
| 28 | + return result |
| 29 | + }, {}) |
| 30 | + fs.writeFileSync(packageJsonPath, JSON.stringify(packageJson, null, 2) + '\n') |
| 31 | +} |
| 32 | + |
| 33 | +export default addNpmScript |
0 commit comments