Skip to content

Commit ee64b77

Browse files
committed
Reduce noise in diff and use files with the same absolute imports when troubleshooting treeshaking
1 parent 58bdc8a commit ee64b77

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

build/gulpfile.editor.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,9 +181,9 @@ const compileEditorESMTask = task.define('compile-editor-esm', () => {
181181
});
182182
}
183183

184-
// copy files from esm
184+
// copy files from tree shaken src
185185
for (const file of files) {
186-
const srcFilePath = path.join(__dirname, '../out-editor-esm', file);
186+
const srcFilePath = path.join(__dirname, '../out-editor-src', file);
187187
const dstFilePath = path.join(destPath, file);
188188
if (fs.existsSync(srcFilePath)) {
189189
util.ensureDir(path.dirname(dstFilePath));

0 commit comments

Comments
 (0)