Skip to content

Commit 59c91f2

Browse files
authored
Merge pull request #661 from swrlab/dev/deps-nov
chore: update dependencies
2 parents 5d236c0 + 5ee1b06 commit 59c91f2

File tree

6 files changed

+24
-4416
lines changed

6 files changed

+24
-4416
lines changed

.github/workflows/pull.yml

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
1919
test:
2020
needs: security
21-
name: Run Mocha Tests
21+
name: Run Tests
2222
runs-on: ubuntu-latest
2323
steps:
2424
- name: 👀 Checkout Code
@@ -29,11 +29,19 @@ jobs:
2929
with:
3030
node-version: ${{ env.NODE_VERSION }}
3131

32-
- name: 📦 Install Yarn
33-
run: corepack enable && yarn set version stable
32+
- name: 🛠 Setup Bun
33+
uses: oven-sh/setup-bun@v2
34+
with:
35+
bun-version: latest
3436

3537
- name: 📦 Install Dependencies
36-
run: yarn install
38+
run: bun install
39+
40+
- name: 🧪 Run Lint
41+
run: bun run lint
42+
43+
- name: 🧪 Run Tests (in Bun)
44+
run: bun run test
3745

38-
- name: 🧪 Run Tests
39-
run: yarn lint && yarn test
46+
- name: 🧪 Run Tests (in Node)
47+
run: npm run test

.github/workflows/push.yml

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

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ by [**SWR Audio Lab**](https://lab.swr.de/)
44

55
## Changelog
66

7+
- 2024-11-18 - v2.0.3
8+
9+
- chore: update dependencies
10+
711
- 2024-10-24 - v2.0.2
812

913
- chore: fix node-crc dependency

bun.lockb

266 KB
Binary file not shown.

package.json

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@swrlab/utils",
3-
"version": "2.0.2",
3+
"version": "2.0.3",
44
"description": "Wrapping common SWR Audio Lab utils",
55
"repository": {
66
"type": "git",
@@ -18,24 +18,23 @@
1818
"reinstall": "rm -rf node_modules && rm yarn.lock && touch yarn.lock && yarn"
1919
},
2020
"dependencies": {
21-
"@google-cloud/storage": "^7.13.0",
21+
"@google-cloud/storage": "^7.14.0",
2222
"abort-controller": "^3.0.0",
2323
"luxon": "3.5.0",
2424
"node-crc": "https://github.com/swrlab/node-crc#v2.1.0",
25-
"undici": "6.20.1"
25+
"undici": "6.21.0"
2626
},
2727
"devDependencies": {
28-
"@swrlab/style-guide": "https://github.com/swrlab/style-guide.git",
28+
"@swrlab/style-guide": "^1.0.3",
2929
"chai": "4.4.1",
3030
"dotenv": "^16.4.5",
31-
"eslint": "^9.13.0",
31+
"eslint": "^9.15.0",
3232
"eslint-plugin-json": "^4.0.1",
33-
"mocha": "^10.7.3",
33+
"mocha": "^10.8.2",
3434
"prettier": "^3.3.3"
3535
},
3636
"engines": {
3737
"node": ">=20"
3838
},
39-
"packageManager": "yarn@4.2.2",
4039
"prettier": "@swrlab/style-guide/prettier"
4140
}

0 commit comments

Comments
 (0)