Skip to content

Commit 310d135

Browse files
committed
chore: bump version
1 parent 226156b commit 310d135

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

.changeset/puny-dodos-fix.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"unplugin-tailwindcss-mangle": patch
3+
---
4+
5+
fix: https://github.com/sonofmagic/tailwindcss-mangle/issues/141

packages/unplugin-tailwindcss-mangle/src/core/factory.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { isCSSRequest } from 'is-css-request'
77
import path from 'pathe'
88
import { pluginName } from '../constants'
99

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')
1111

1212
const factory: UnpluginFactory<MangleUserConfig | undefined> = (options) => {
1313
const ctx = new Context()

packages/unplugin-tailwindcss-mangle/src/core/loader.ts packages/unplugin-tailwindcss-mangle/src/loader.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1+
import type { Context } from '@tailwindcss-mangle/core'
12
import type { LoaderContext } from 'webpack'
2-
import { type Context, cssHandler } from '@tailwindcss-mangle/core'
3+
import { cssHandler } from '@tailwindcss-mangle/core'
34

45
const TailwindcssMangleWebpackLoader = async function (this: LoaderContext<{ ctx: Context }>, source: string) {
56
const callback = this.async()

0 commit comments

Comments
 (0)