mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-09-23 20:18:42 +08:00
fix(electron): sourcemap not loading for electron dev mode (#9951)
This commit is contained in:
@@ -4,7 +4,6 @@ import path from 'node:path';
|
|||||||
import { fileURLToPath } from 'node:url';
|
import { fileURLToPath } from 'node:url';
|
||||||
|
|
||||||
import fs from 'fs-extra';
|
import fs from 'fs-extra';
|
||||||
import { glob } from 'glob';
|
|
||||||
|
|
||||||
const require = createRequire(import.meta.url);
|
const require = createRequire(import.meta.url);
|
||||||
const __dirname = fileURLToPath(new URL('.', import.meta.url));
|
const __dirname = fileURLToPath(new URL('.', import.meta.url));
|
||||||
@@ -60,29 +59,6 @@ if (!process.env.SKIP_WEB_BUILD) {
|
|||||||
shell: true,
|
shell: true,
|
||||||
});
|
});
|
||||||
|
|
||||||
// step 1.5: amend sourceMappingURL to allow debugging in devtools
|
|
||||||
await glob('**/*.{js,css}', { cwd: affineWebOutDir }).then(files => {
|
|
||||||
return Promise.all(
|
|
||||||
files.map(async file => {
|
|
||||||
const dir = path.dirname(file);
|
|
||||||
const fullpath = path.join(affineWebOutDir, file);
|
|
||||||
let content = await fs.readFile(fullpath, 'utf-8');
|
|
||||||
// replace # sourceMappingURL=76-6370cd185962bc89.js.map
|
|
||||||
// to # sourceMappingURL=assets://./{dir}/76-6370cd185962bc89.js.map
|
|
||||||
content = content.replace(/# sourceMappingURL=(.*)\.map/g, (_, p1) => {
|
|
||||||
return `# sourceMappingURL=assets://./${dir}/${p1}.map`;
|
|
||||||
});
|
|
||||||
try {
|
|
||||||
await fs.writeFile(fullpath, content);
|
|
||||||
console.log('amended sourceMappingURL for', fullpath);
|
|
||||||
} catch (e) {
|
|
||||||
// do not crash the build
|
|
||||||
console.error('error writing file', fullpath, e);
|
|
||||||
}
|
|
||||||
})
|
|
||||||
);
|
|
||||||
});
|
|
||||||
|
|
||||||
await fs.move(affineWebOutDir, publicAffineOutDir, { overwrite: true });
|
await fs.move(affineWebOutDir, publicAffineOutDir, { overwrite: true });
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -432,6 +432,21 @@ export function createWebpackConfig(
|
|||||||
if (buildConfig.isElectron) {
|
if (buildConfig.isElectron) {
|
||||||
config.plugins.push(createShellHTMLPlugin(flags, buildConfig));
|
config.plugins.push(createShellHTMLPlugin(flags, buildConfig));
|
||||||
config.plugins.push(createBackgroundWorkerHTMLPlugin(flags, buildConfig));
|
config.plugins.push(createBackgroundWorkerHTMLPlugin(flags, buildConfig));
|
||||||
|
|
||||||
|
// sourcemap url like # sourceMappingURL=76-6370cd185962bc89.js.map wont load in electron
|
||||||
|
// this is because the default file:// protocol will be ignored by Chromium
|
||||||
|
// so we need to replace the sourceMappingURL to assets:// protocol
|
||||||
|
// for example:
|
||||||
|
// replace # sourceMappingURL=76-6370cd185962bc89.js.map
|
||||||
|
// to # sourceMappingURL=assets://./{dir}/76-6370cd185962bc89.js.map
|
||||||
|
config.plugins.push(
|
||||||
|
new webpack.SourceMapDevToolPlugin({
|
||||||
|
append: pathData => {
|
||||||
|
return `\n//# sourceMappingURL=assets://./${pathData.filename}.map`;
|
||||||
|
},
|
||||||
|
filename: '[file].map',
|
||||||
|
})
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
return config;
|
return config;
|
||||||
|
|||||||
Reference in New Issue
Block a user