Skip to content
This repository was archived by the owner on Jan 11, 2023. It is now read-only.

Commit eb3faf8

Browse files
committed
windows debugging
1 parent bd02d86 commit eb3faf8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/core/create_compilers/RollupCompiler.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ export default class RollupCompiler {
168168
};
169169

170170
const dependencies = {};
171-
171+
console.log(`bundleIDs: ${JSON.stringify(Object.values(bundle).map(c => (<OutputChunk>c).facadeModuleId))}`);
172172
let has_css = false;
173173
for (const name in bundle) {
174174
const chunk = <OutputChunk>bundle[name];
@@ -177,6 +177,7 @@ export default class RollupCompiler {
177177

178178
if (chunk.code) {
179179
chunk.code = chunk.code.replace(/\/\* ___(.+?)___ \*\//g, (m, id) => {
180+
console.log('looking for ' + id);
180181
const target = <OutputChunk>Object.values(bundle).find(c => (<OutputChunk>c).facadeModuleId === id);
181182

182183
if (target) {

0 commit comments

Comments
 (0)