| 123456789101112131415 | 'use strict';/** * * * @author Mai * @date * @version */const fs = require('fs');const packageJSON = JSON.parse(fs.readFileSync(__dirname + '/package.json', 'utf8'));packageJSON.name = 'calc_dx' ;packageJSON.scripts['start-qadx'] = "egg-scripts start --daemon --port 7006";fs.writeFileSync(__dirname + '/package.json', JSON.stringify(packageJSON, '', '\t'));
 |