Skip to content

Commit f8f4bba

Browse files
committed
perf: reduce package size by updating dependencies
From 700 Kb to 650 Kb.
1 parent 556acc6 commit f8f4bba

File tree

12 files changed

+3260
-5685
lines changed

12 files changed

+3260
-5685
lines changed

.eslintrc.json

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
{
22
"parser": "@typescript-eslint/parser",
3-
"plugins": ["@typescript-eslint", "prettier"],
4-
"extends": ["plugin:@typescript-eslint/recommended", "prettier"],
5-
"rules": {
6-
"prettier/prettier": "error"
7-
}
3+
"plugins": ["@typescript-eslint"],
4+
"extends": ["plugin:@typescript-eslint/recommended"]
85
}

.github/workflows/ci.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
push:
55
branches: [master]
66
pull_request:
7-
branches: [master]
7+
branches: [master, beta]
88

99
jobs:
1010
build_and_lint:
@@ -14,12 +14,13 @@ jobs:
1414

1515
- uses: actions/setup-node@v4
1616
with:
17-
node-version: 18
17+
node-version: 22
1818
cache: "npm"
1919

2020
- run: npm ci
2121
- run: npm run build
2222
- run: npm run lint:commit -- --to "${{ github.sha }}"
23+
- run: npm run lint:typescript
2324
- run: npm run lint:eslint
2425
- run: npm run lint:prettier
2526
- run: npm run test

.github/workflows/codeql.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,7 @@ on:
44
push:
55
branches: ["master"]
66
pull_request:
7-
branches: ["master"]
8-
schedule:
9-
- cron: "47 18 * * 3"
7+
branches: ["master", "beta"]
108

119
jobs:
1210
analyze:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
- uses: "actions/setup-node@v4"
2222
with:
23-
node-version: 20
23+
node-version: 22
2424
cache: "npm"
2525

2626
- run: "npm ci"

jest.config.json

Lines changed: 0 additions & 4 deletions
This file was deleted.

0 commit comments

Comments
 (0)