Skip to content

Commit 5e23fc0

Browse files
committed
try rollup w/ posix
1 parent 1495201 commit 5e23fc0

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

packages/integration-tests/fixtures/debug-ids-already-injected/input/rollup4/rollup.config.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,14 @@ console.log({
88
__dirname,
99
posixInput: posix.join(__dirname, "..", "bundle.js"),
1010
input: join(__dirname, "..", "bundle.js"),
11+
outputPath: join(__dirname, "..", "..", "out", "rollup4"),
12+
posixOutputPath: posix.join(__dirname, "..", "..", "out", "rollup4"),
1113
});
1214

1315
export default defineConfig({
14-
input: { index: join(__dirname, "..", "bundle.js") },
16+
input: { index: posix.join(__dirname, "..", "bundle.js") },
1517
output: {
16-
dir: join(__dirname, "..", "..", "out", "rollup4"),
18+
dir: posix.join(__dirname, "..", "..", "out", "rollup4"),
1719
sourcemap: true,
1820
sourcemapDebugIds: true,
1921
},

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ console.log({
77
__dirname,
88
posixInput: posix.join(__dirname, "..", "bundle.js"),
99
input: join(__dirname, "..", "bundle.js"),
10+
outputPath: posix.join(__dirname, "..", "..", "out", "webpack5"),
1011
});
1112

1213
export default {

0 commit comments

Comments
 (0)