Skip to content

Commit

Permalink
fix: add options to esbuild plugins wrapper (#70)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexamy authored Oct 24, 2024
1 parent b35ae88 commit 512411f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/esbuild/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ export function macaronEsbuildPlugin({
};
}

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

0 comments on commit 512411f

Please sign in to comment.