Skip to content

Commit de20f66

Browse files
committed
fix build
1 parent 2ab6a10 commit de20f66

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/component-annotate-plugin/rollup.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const extensions = [".ts"];
99

1010
export default {
1111
input,
12-
external: [...Object.keys(packageJson.dependencies), ...modulePackage.builtinModules],
12+
external: [...Object.keys(packageJson.dependencies ?? []), ...modulePackage.builtinModules],
1313
onwarn: (warning) => {
1414
throw new Error(warning.message); // Warnings are usually high-consequence for us so let's throw to catch them
1515
},

0 commit comments

Comments
 (0)