Skip to content

Commit 5c1613d

Browse files
committed
Fix CJS interop
1 parent 35ca023 commit 5c1613d

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"postcss-assign-layer"
1010
],
1111
"scripts": {
12-
"build": "tsup src/index.ts --format esm,cjs --dts",
12+
"build": "tsup src/index.ts --format esm,cjs --dts --cjsInterop --splitting",
1313
"test": "vitest run --coverage && eslint .",
1414
"test:watch": "vitest",
1515
"prepublishOnly": "pnpm build && pnpm test"

src/index.test.mts

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ import path from "node:path";
33
import postcss from "postcss";
44
import prettier from "prettier";
55
import { describe, it, expect } from "vitest";
6-
import { plugin, type PluginOptions } from "./index";
6+
import type { PluginOptions } from "./index";
7+
import plugin from "./index";
78

89
// We don't care about formatting differences, so normalize with prettier
910
function format(css: string) {

src/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ type ConfigItem = {
1010
};
1111
export type PluginOptions = ConfigItem[];
1212

13-
export const plugin: PluginCreator<PluginOptions> = (
13+
const plugin: PluginCreator<PluginOptions> = (
1414
configItems = [
1515
{
1616
include: DEFAULT_INCLUDE,

0 commit comments

Comments
 (0)