Skip to content

Commit 512411f

Browse files
authored
fix: add options to esbuild plugins wrapper (#70)
1 parent b35ae88 commit 512411f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/esbuild/src/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ export function macaronEsbuildPlugin({
128128
};
129129
}
130130

131-
export const macaronEsbuildPlugins = () => [
132-
macaronEsbuildPlugin(),
131+
export const macaronEsbuildPlugins = (options: MacaronEsbuildPluginOptions = {}) => [
132+
macaronEsbuildPlugin(options),
133133
require('@vanilla-extract/esbuild-plugin').vanillaExtractPlugin(),
134134
];

0 commit comments

Comments
 (0)