We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7bc9de commit 14cbf6aCopy full SHA for 14cbf6a
packages/integration-tests/utils/generatePage.ts
@@ -11,7 +11,7 @@ const PACKAGE_PATH = '../../packages';
11
const bundleKey = process.env.PW_BUNDLE;
12
13
// `esm` and `cjs` builds are modules that can be imported / aliased by webpack
14
-const useCompiledModule = bundleKey && (bundleKey === 'esm' || bundleKey === 'cjs');
+const useCompiledModule = bundleKey === 'esm' || bundleKey === 'cjs';
15
16
// bundles need to be injected into HTML before Sentry initialization.
17
const useBundle = bundleKey && !useCompiledModule;
0 commit comments