Skip to content

Commit e645bbf

Browse files
committed
move input file into rollup dir
1 parent 5e23fc0 commit e645bbf

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ const __dirname = new URL(".", import.meta.url).pathname;
66

77
console.log({
88
__dirname,
9-
posixInput: posix.join(__dirname, "..", "bundle.js"),
9+
posixInput: posix.join(__dirname, "bundle.js"),
1010
input: join(__dirname, "..", "bundle.js"),
1111
outputPath: join(__dirname, "..", "..", "out", "rollup4"),
1212
posixOutputPath: posix.join(__dirname, "..", "..", "out", "rollup4"),
1313
});
1414

1515
export default defineConfig({
16-
input: { index: posix.join(__dirname, "..", "bundle.js") },
16+
input: { index: posix.join(__dirname, "bundle.js") },
1717
output: {
1818
dir: posix.join(__dirname, "..", "..", "out", "rollup4"),
1919
sourcemap: true,

packages/integration-tests/utils/testIf.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@ export const testIfNodeMajorVersionIsLessThan18: jest.It = function () {
2121
// eslint-disable-next-line @typescript-eslint/no-explicit-any
2222
} as any;
2323

24-
console.log("xx NODE_MAJOR_VERSION", NODE_MAJOR_VERSION);
25-
2624
// eslint-disable-next-line no-undef
2725
export const describeNode18Plus: jest.Describe =
2826
// eslint-disable-next-line no-undef

0 commit comments

Comments
 (0)