mirror of
https://gitee.com/eolink_admin/postcat.git
synced 2024-12-02 03:38:03 +08:00
a51feb0311
* feat: update extension UI * fix(components): [manage-access] a tag rename to span * feat: update e2e Co-authored-by: buqiyuan <1743369777@qq.com> Co-authored-by: 夜鹰 <17kungfuboy@gmail.com>
12 lines
288 B
JavaScript
12 lines
288 B
JavaScript
//If stuck,check yarn.lock file,maybe has conflict
|
|
// upgrade.js
|
|
const child_process = require('child_process');
|
|
const os = require('os');
|
|
|
|
exports.default = async function (context) {
|
|
//windows
|
|
if (os.type() == 'Windows_NT') {
|
|
child_process.execSync(`yarn wininstaller`);
|
|
}
|
|
};
|