Skip to content

Commit 7ec598a

Browse files
committed
more logging
1 parent 9a0cb11 commit 7ec598a

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
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/rollup4/rollup.config.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { defineConfig } from "rollup";
22
import { sentryRollupPlugin } from "@sentry/rollup-plugin";
33
import { join, posix } from "path";
4-
import { existsSync } from "fs";
4+
import { existsSync, readdirSync } from "fs";
55

66
const __dirname = new URL(".", import.meta.url).pathname;
77

@@ -12,6 +12,7 @@ console.log({
1212
existsInputPosix: existsSync(posix.join(__dirname, "bundle.js")),
1313
existsInputDumb: existsSync(`${__dirname}/bundle.js`),
1414
outputPath: join(__dirname, "..", "..", "out", "rollup4"),
15+
allFilesInDirname: readdirSync(__dirname),
1516
});
1617

1718
export default defineConfig({

0 commit comments

Comments
 (0)