ESH/jquery.sumoselect-master/gpr-hack.js
2024-10-23 18:28:06 +05:30

11 lines
280 B
JavaScript

const fs = require('fs');
const path = require('path');
const pkg = require('./package.json');
pkg.name = '@hemantnegi/jquery.sumoselect';
// Update package.json with the udpated name
fs.writeFileSync(
path.join(__dirname, './package.json'),
JSON.stringify(pkg, null, 2),
);