Skip to content

Commit 0a9e895

Browse files
setup(nvm & workflow): bump to node 24 (#74)
1 parent b11e2fd commit 0a9e895

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
23
1+
24

biome.jsonc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
33
"files": {
44
"ignore": [
5-
"**/*.snap.cjs"
5+
"**/*.snap.cjs",
6+
"**/fixtures/**"
67
]
78
},
89
"organizeImports": {

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,12 @@
22
"name": "userland-migrations",
33
"version": "1.0.0",
44
"description": "A collection of migration recipes for userland code.",
5+
"type": "module",
56
"scripts": {
67
"lint:fix": "biome lint --fix ./",
78
"lint": "biome lint ./",
89
"pre-commit": "node --run lint:fix; node --run type-check; node --run test",
9-
"test": "npm run test --workspaces -- --no-warnings --import='./test/snapshots.ts' --experimental-test-coverage --test-reporter=spec --test-reporter-destination=stdout",
10+
"test": "npm run test --workspaces -- --import='./test/snapshots.ts' --experimental-test-coverage --test-reporter=spec --test-reporter-destination=stdout",
1011
"type-check": "tsc"
1112
},
1213
"repository": {

0 commit comments

Comments
 (0)