|
| 1 | +import { bold, green, red } from 'colorette'; |
| 2 | +import { readFile, writeFile } from 'node:fs/promises'; |
| 3 | +import { basename } from 'node:path'; |
| 4 | +import { format } from 'prettier'; |
| 5 | +import { findFilesRecursivelyRegex } from '../packages/node-utilities/dist/esm/index.mjs'; |
| 6 | +import prettierConfig from '../packages/prettier-config/dist/index.mjs'; |
| 7 | + |
| 8 | +const packageName = process.argv[2]; |
| 9 | +const check = process.argv[3] === '--check'; |
| 10 | + |
| 11 | +const sideEffects = ['./dist/iife/index.global.js']; |
| 12 | + |
| 13 | +for await (const file of findFilesRecursivelyRegex( |
| 14 | + new URL(`../packages/${packageName}/dist/esm`, import.meta.url), |
| 15 | + /chunk-[A-Z0-9]+\.mjs(?!\.map)/ |
| 16 | +)) { |
| 17 | + const name = basename(file); |
| 18 | + sideEffects.unshift(`./dist/esm/${name}`); |
| 19 | +} |
| 20 | + |
| 21 | +const packageJsonRaw = await readFile(new URL(`../packages/${packageName}/package.json`, import.meta.url), 'utf8'); |
| 22 | +const packageJSON = JSON.parse(packageJsonRaw); |
| 23 | + |
| 24 | +const newPackageJSON = JSON.stringify({ |
| 25 | + ...packageJSON, |
| 26 | + sideEffects |
| 27 | +}); |
| 28 | + |
| 29 | +const oldPackageJSON = JSON.stringify(packageJSON); |
| 30 | + |
| 31 | +if (oldPackageJSON === newPackageJSON) { |
| 32 | + console.log(green(`The package.json file for ${packageName} is up to date!`)); |
| 33 | + process.exit(0); |
| 34 | +} |
| 35 | + |
| 36 | +if (check) { |
| 37 | + console.error(red(`The package.json file for ${packageName} is not up to date! Run ${green(bold('yarn dynamic-side-effects'))} to update it.`)); |
| 38 | + process.exit(1); |
| 39 | +} |
| 40 | + |
| 41 | +const formattedNewPackageJSON = await format(newPackageJSON, { ...prettierConfig, parser: 'json-stringify' }); |
| 42 | +await writeFile(new URL(`../packages/${packageName}/package.json`, import.meta.url), formattedNewPackageJSON); |
| 43 | + |
| 44 | +console.log(green(`The package.json file for ${packageName} is updated successfully!`)); |
0 commit comments