代码拉取完成,页面将自动刷新
同步操作将从 NocoBase/NocoBase 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
// @ts-ignore
const axios = require('axios');
const glob = require('glob');
const path = require('path');
const fs = require('fs/promises');
const lerna = require('./lerna.json');
const files = glob.sync(path.resolve(__dirname, './node_modules/@nocobase/**/package.json'));
(async () => {
for (const file of files) {
const content = await fs.readFile(file);
const json = JSON.parse(content.toString());
const url = `https://registry.npmmirror.com/${json.name}`;
try {
const response = await axios.get(url);
const latest = response?.data?.['dist-tags']?.latest;
if (latest !== lerna.version) {
console.log(json.name, latest);
console.log(`https://www.npmmirror.com/package/${json.name}`);
const res = await fetch(`https://registry-direct.npmmirror.com/-/package/${json.name}/syncs`, {
headers: {
accept: '*/*',
'accept-language': 'zh-CN,zh;q=0.9',
priority: 'u=1, i',
'sec-ch-ua': '"Chromium";v="124", "Google Chrome";v="124", "Not-A.Brand";v="99"',
'sec-ch-ua-mobile': '?0',
'sec-ch-ua-platform': '"macOS"',
'sec-fetch-dest': 'empty',
'sec-fetch-mode': 'cors',
'sec-fetch-site': 'same-site',
Referer: 'https://www.npmmirror.com/',
'Referrer-Policy': 'strict-origin-when-cross-origin',
},
body: null,
method: 'PUT',
});
// const response = await axios.put(`https://registry-direct.npmmirror.com/-/package/${json.name}/syncs`);
console.log(await res.json());
await new Promise((resolve) => {
setTimeout(() => {
resolve(null);
}, 1000);
});
}
} catch (error) {
// ...
}
}
})();
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。