fix.js 322 B

123456
  1. import fs from 'fs'
  2. const packageJson = JSON.parse(fs.readFileSync('./node_modules/bignumber.js/package.json', 'utf8'))
  3. packageJson.exports['./bignumber'] = './bignumber.js'
  4. fs.writeFileSync('./node_modules/bignumber.js/package.json', JSON.stringify(packageJson, null, 2))
  5. console.log('Fixed bignumber.js package.json')