File tree 2 files changed +3
-7
lines changed
2 files changed +3
-7
lines changed Original file line number Diff line number Diff line change 2
2
"name" : " @yuheiy/postcss-custom-functions" ,
3
3
"version" : " 0.1.0" ,
4
4
"description" : " PostCSS plugin that allows users to define custom functions using JavaScript." ,
5
- "keywords" : [
6
- " postcss-plugin"
7
- ],
5
+ "keywords" : [" postcss-plugin" ],
8
6
"homepage" : " https://github.com/yuheiy/postcss-custom-functions" ,
9
7
"bugs" : {
10
8
"url" : " https://github.com/yuheiy/postcss-custom-functions/issues"
25
23
},
26
24
"main" : " ./dist/index.cjs" ,
27
25
"types" : " ./dist/index.d.ts" ,
28
- "files" : [
29
- " dist"
30
- ],
26
+ "files" : [" dist" ],
31
27
"scripts" : {
32
28
"build" : " unbuild" ,
33
29
"dev" : " unbuild --stub && pnpm run test --watch" ,
Original file line number Diff line number Diff line change 1
- import postcss from 'postcss' ;
2
1
import assert from 'node:assert/strict' ;
3
2
import test from 'node:test' ;
3
+ import postcss from 'postcss' ;
4
4
import plugin from '../dist/index.mjs' ;
5
5
6
6
test ( 'output errors in custom functions as PostCSS warnings' , async ( ) => {
You can’t perform that action at this time.
0 commit comments