File tree 3 files changed +4
-3
lines changed
3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 9
9
" postcss-assign-layer"
10
10
],
11
11
"scripts" : {
12
- "build" : " tsup src/index.ts --format esm,cjs --dts" ,
12
+ "build" : " tsup src/index.ts --format esm,cjs --dts --cjsInterop --splitting " ,
13
13
"test" : " vitest run --coverage && eslint ." ,
14
14
"test:watch" : " vitest" ,
15
15
"prepublishOnly" : " pnpm build && pnpm test"
Original file line number Diff line number Diff line change @@ -3,7 +3,8 @@ import path from "node:path";
3
3
import postcss from "postcss" ;
4
4
import prettier from "prettier" ;
5
5
import { describe , it , expect } from "vitest" ;
6
- import { plugin , type PluginOptions } from "./index" ;
6
+ import type { PluginOptions } from "./index" ;
7
+ import plugin from "./index" ;
7
8
8
9
// We don't care about formatting differences, so normalize with prettier
9
10
function format ( css : string ) {
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ type ConfigItem = {
10
10
} ;
11
11
export type PluginOptions = ConfigItem [ ] ;
12
12
13
- export const plugin : PluginCreator < PluginOptions > = (
13
+ const plugin : PluginCreator < PluginOptions > = (
14
14
configItems = [
15
15
{
16
16
include : DEFAULT_INCLUDE ,
You can’t perform that action at this time.
0 commit comments