代码拉取完成,页面将自动刷新
import resolve from '@rollup/plugin-node-resolve';
import commonjs from '@rollup/plugin-commonjs';
import json from '@rollup/plugin-json';
import fs from 'fs';
export default {
input: 'src/common/common_flutter.js',
output: {
file: 'dist/crawler.template.js',
format: 'es',
name: 'myModule'
},
// external: ['iconv-lite', 'buffer'],
plugins: [resolve(), commonjs(), json(), {
name: 'afterBuild',
writeBundle() {
const filePath = 'dist/crawler.template.js';
// 读取打包后的文件
fs.readFile(filePath, 'utf8', (err, data) => {
if (err) {
console.error(err);
return;
}
let modifiedData = data
.replace(/fetch\(/g, 'fetchTextContent(') // 使用正则表达式将 'fetch(' 替换为 'fetchTextContent('
.replace(/window\.myModule\s*=\s*{[^}]+};?/g, ''); // 使用正则表达式删除 window.myModule 后面的内容
// .replace(/export\s*{\s*[^{}]*\s*};?/g, '');
// .replace(/import\s+[^;]+;/g, '');
// 删除后面的空行
modifiedData = modifiedData.trim();
// 将修改后的内容写回文件
fs.writeFile(filePath, modifiedData, 'utf8', (err) => {
if (err) {
console.error(err);
return;
}
console.log('文件修改完毕。');
});
});
}
}]
};
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。