Skip to content

Commit

Permalink
[unplugin] Fix misuse variable to transform libraries (#153)
Browse files Browse the repository at this point in the history
  • Loading branch information
siriwatknp authored Jun 20, 2024
1 parent 0f14c19 commit cd97713
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/pigment-css-unplugin/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ export const plugin = createUnplugin<PigmentOptions, true>((options) => {
onDone(process.cwd());
},
transformInclude(id) {
return isZeroRuntimeProcessableFile(id, transformLibraries);
return isZeroRuntimeProcessableFile(id, finalTransformLibraries);
},
webpack(compiler) {
const resolverPlugin: ResolvePluginInstance = {
Expand Down

0 comments on commit cd97713

Please sign in to comment.