Skip to content

Commit b0774e6

Browse files
committed
format
1 parent 95b2256 commit b0774e6

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

package.json

+2-6
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@
22
"name": "@yuheiy/postcss-custom-functions",
33
"version": "0.1.0",
44
"description": "PostCSS plugin that allows users to define custom functions using JavaScript.",
5-
"keywords": [
6-
"postcss-plugin"
7-
],
5+
"keywords": ["postcss-plugin"],
86
"homepage": "https://github.com/yuheiy/postcss-custom-functions",
97
"bugs": {
108
"url": "https://github.com/yuheiy/postcss-custom-functions/issues"
@@ -25,9 +23,7 @@
2523
},
2624
"main": "./dist/index.cjs",
2725
"types": "./dist/index.d.ts",
28-
"files": [
29-
"dist"
30-
],
26+
"files": ["dist"],
3127
"scripts": {
3228
"build": "unbuild",
3329
"dev": "unbuild --stub && pnpm run test --watch",

test/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import postcss from 'postcss';
21
import assert from 'node:assert/strict';
32
import test from 'node:test';
3+
import postcss from 'postcss';
44
import plugin from '../dist/index.mjs';
55

66
test('output errors in custom functions as PostCSS warnings', async () => {

0 commit comments

Comments
 (0)