File tree 3 files changed +8
-2
lines changed
packages/unplugin-tailwindcss-mangle/src
3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ " unplugin-tailwindcss-mangle " : patch
3
+ ---
4
+
5
+ fix: https://github.com/sonofmagic/tailwindcss-mangle/issues/141
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ import { isCSSRequest } from 'is-css-request'
7
7
import path from 'pathe'
8
8
import { pluginName } from '../constants'
9
9
10
- const WEBPACK_LOADER = path . resolve ( __dirname , __DEV__ ? '../../dist/core/ loader.cjs' : 'core /loader.cjs' )
10
+ const WEBPACK_LOADER = path . resolve ( __dirname , __DEV__ ? '../../dist/loader.cjs' : '. /loader.cjs' )
11
11
12
12
const factory : UnpluginFactory < MangleUserConfig | undefined > = ( options ) => {
13
13
const ctx = new Context ( )
Original file line number Diff line number Diff line change
1
+ import type { Context } from '@tailwindcss-mangle/core'
1
2
import type { LoaderContext } from 'webpack'
2
- import { type Context , cssHandler } from '@tailwindcss-mangle/core'
3
+ import { cssHandler } from '@tailwindcss-mangle/core'
3
4
4
5
const TailwindcssMangleWebpackLoader = async function ( this : LoaderContext < { ctx : Context } > , source : string ) {
5
6
const callback = this . async ( )
You can’t perform that action at this time.
0 commit comments