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 2ab6a10 commit de20f66Copy full SHA for de20f66
packages/component-annotate-plugin/rollup.config.js
@@ -9,7 +9,7 @@ const extensions = [".ts"];
9
10
export default {
11
input,
12
- external: [...Object.keys(packageJson.dependencies), ...modulePackage.builtinModules],
+ external: [...Object.keys(packageJson.dependencies ?? []), ...modulePackage.builtinModules],
13
onwarn: (warning) => {
14
throw new Error(warning.message); // Warnings are usually high-consequence for us so let's throw to catch them
15
},
0 commit comments