Skip to content

Commit 178a3a1

Browse files
committed
use move bundle.js into webpack dir
1 parent 72fe442 commit 178a3a1

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
// eslint-disable-next-line no-console
2+
console.log("Hello world");

packages/integration-tests/fixtures/debug-ids-already-injected/input/webpack5/webpack.config.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ const __dirname = fileURLToPath(import.meta.url);
88
console.log({
99
__dirname,
1010
existsDirname: existsSync(__dirname),
11-
posixInput: posix.join(__dirname, "..", "bundle.js"),
12-
input: join(__dirname, "..", "bundle.js"),
13-
outputPath: posix.join(__dirname, "..", "..", "out", "webpack5"),
11+
posixInput: posix.join(__dirname, "bundle.js"),
12+
input: join(__dirname, "bundle.js"),
13+
outputPath: posix.join(__dirname, "..", "out", "webpack5"),
1414
});
1515

1616
export default {
1717
devtool: "source-map-debugids",
1818
cache: false,
19-
entry: { index: join(__dirname, "..", "bundle.js") },
19+
entry: { index: join(__dirname, "bundle.js") },
2020
output: {
2121
path: join(__dirname, "..", "..", "out", "webpack5"),
2222
library: {

0 commit comments

Comments
 (0)