Skip to content

Commit a5d118e

Browse files
committed
Update dependencies and practies
1 parent 2026795 commit a5d118e

3 files changed

Lines changed: 463 additions & 329 deletions

File tree

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Checkout the repository
15-
uses: actions/checkout@v3
15+
uses: actions/checkout@v4
1616
- name: Install pnpm
1717
uses: pnpm/action-setup@v2
1818
with:
@@ -36,7 +36,7 @@ jobs:
3636
name: Node.js ${{ matrix.node-version }} Quick
3737
steps:
3838
- name: Checkout the repository
39-
uses: actions/checkout@v3
39+
uses: actions/checkout@v4
4040
- name: Install pnpm
4141
uses: pnpm/action-setup@v2
4242
with:

package.json

Lines changed: 20 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -14,32 +14,41 @@
1414
"repository": "postcss/postcss-easings",
1515
"scripts": {
1616
"unit": "uvu . '\\.test\\.js$'",
17-
"test": "c8 pnpm unit && eslint ."
17+
"test:coverage": "c8 pnpm unit",
18+
"test:lint": "eslint .",
19+
"test": "pnpm run /^test:/"
1820
},
1921
"engines": {
2022
"node": ">=16.0"
2123
},
22-
"funding": {
23-
"type": "opencollective",
24-
"url": "https://opencollective.com/postcss/"
25-
},
24+
"funding": [
25+
{
26+
"type": "opencollective",
27+
"url": "https://opencollective.com/postcss/"
28+
},
29+
{
30+
"type": "github",
31+
"url": "https://github.com/sponsors/ai"
32+
}
33+
],
2634
"peerDependencies": {
2735
"postcss": "^8.1.0"
2836
},
2937
"dependencies": {
3038
"postcss-value-parser": "^4.2.0"
3139
},
3240
"devDependencies": {
33-
"@logux/eslint-config": "^51.0.0",
34-
"c8": "^8.0.0",
41+
"@logux/eslint-config": "^52.0.1",
42+
"c8": "^8.0.1",
3543
"clean-publish": "^4.2.0",
36-
"eslint": "^8.44.0",
44+
"eslint": "^8.51.0",
3745
"eslint-config-standard": "^17.1.0",
38-
"eslint-plugin-import": "^2.27.5",
39-
"eslint-plugin-n": "^16.0.1",
46+
"eslint-plugin-import": "^2.28.1",
47+
"eslint-plugin-n": "^16.1.0",
48+
"eslint-plugin-node-import": "^1.0.4",
4049
"eslint-plugin-prefer-let": "^3.0.1",
4150
"eslint-plugin-promise": "^6.1.1",
42-
"postcss": "^8.4.24",
51+
"postcss": "^8.4.31",
4352
"uvu": "^0.5.6"
4453
},
4554
"prettier": {

0 commit comments

Comments
 (0)