Skip to content

Commit 89d33be

Browse files
authored
(chore) remove corepack, upgrade build dependencies (#121)
1 parent 737f755 commit 89d33be

File tree

4 files changed

+738
-737
lines changed

4 files changed

+738
-737
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ jobs:
1616

1717
steps:
1818
- uses: actions/checkout@v4
19+
- uses: pnpm/action-setup@v4
1920
- name: Use Node.js ${{ matrix.node-version }}
2021
uses: actions/setup-node@v4
2122
with:
2223
node-version: ${{ matrix.node-version }}
23-
- run: npm install --global corepack@latest
24-
- run: corepack enable
24+
cache: pnpm
2525
- run: pnpm i --frozen-lockfile
2626
- run: pnpm build
2727
- run: pnpm check-types

example/src/App.tsx

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,10 @@ const globalStyles = css`
2323
}
2424
2525
body {
26-
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto",
27-
"Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans",
28-
"Helvetica Neue", sans-serif;
26+
font-family:
27+
-apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
28+
"Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
29+
sans-serif;
2930
-webkit-font-smoothing: antialiased;
3031
-moz-osx-font-smoothing: grayscale;
3132
@@ -54,8 +55,8 @@ const globalStyles = css`
5455
}
5556
5657
code {
57-
font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
58-
monospace;
58+
font-family:
59+
source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace;
5960
}
6061
`;
6162

package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "9.1.2",
44
"description": "Parse METAR and TAF reports",
55
"homepage": "https://aeharding.github.io/metar-taf-parser",
6-
"packageManager": "pnpm@10.1.0+sha512.c89847b0667ddab50396bbbd008a2a43cf3b581efd59cf5d9aa8923ea1fb4b8106c041d540d08acb095037594d73ebc51e1ec89ee40c88b30b8a66c0fae0ac1b",
6+
"packageManager": "pnpm@10.5.2+sha512.da9dc28cd3ff40d0592188235ab25d3202add8a207afbedc682220e4a0029ffbff4562102b9e6e46b4e3f9e8bd53e6d05de48544b0c57d4b0179e22c76d1199b",
77
"keywords": [
88
"aviation",
99
"weather",
@@ -39,23 +39,23 @@
3939
"metar-taf-parser.*"
4040
],
4141
"devDependencies": {
42-
"@babel/preset-env": "^7.26.0",
42+
"@babel/preset-env": "^7.26.9",
4343
"@babel/preset-typescript": "^7.26.0",
4444
"@rollup/plugin-typescript": "^12.1.2",
4545
"@types/jest": "^29.5.14",
46-
"@types/lodash": "^4.17.14",
47-
"@types/node": "^22.10.5",
46+
"@types/lodash": "^4.17.16",
47+
"@types/node": "^22.13.8",
4848
"jest": "^29.7.0",
4949
"lodash": "^4.17.21",
50-
"prettier": "^3.4.2",
50+
"prettier": "^3.5.2",
5151
"rimraf": "^6.0.1",
52-
"rollup": "^4.29.2",
52+
"rollup": "^4.34.9",
5353
"rollup-plugin-dts": "^6.1.1",
54-
"ts-jest": "^29.2.5",
54+
"ts-jest": "^29.2.6",
5555
"ts-node": "^10.9.2",
56-
"tsc-alias": "^1.8.10",
56+
"tsc-alias": "^1.8.11",
5757
"tslib": "^2.8.1",
58-
"typescript": "^5.7.2",
58+
"typescript": "^5.8.2",
5959
"watch": "^1.0.2"
6060
}
6161
}

0 commit comments

Comments
 (0)