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