File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ While best practices for commit messages are encouraged (e.g. start with an impe
32
32
33
33
When working locally, run:
34
34
35
- ``` bash
35
+ ``` sh
36
36
pnpm run dev
37
37
```
38
38
@@ -101,35 +101,35 @@ This library uses [Vitest](https://vitest.dev/) for testing. There’s a great [
101
101
102
102
To run the entire test suite once, run:
103
103
104
- ``` bash
104
+ ``` sh
105
105
pnpm test
106
106
```
107
107
108
108
To run an individual test:
109
109
110
- ``` bash
110
+ ``` sh
111
111
pnpm test -- [partial filename]
112
112
```
113
113
114
114
To start the entire test suite in watch mode:
115
115
116
- ``` bash
116
+ ``` sh
117
117
npx vitest
118
118
```
119
119
120
120
### Running linting
121
121
122
122
Linting is handled via [ Biome] ( https://biomejs.dev ) , a faster ESLint replacement. It was installed with ` pnpm i ` and can be run with:
123
123
124
- ``` bash
124
+ ``` sh
125
125
pnpm run lint
126
126
```
127
127
128
128
### Updating snapshot examples
129
129
130
130
⚠️ This may break tests if schemas have been updated
131
131
132
- ``` bash
132
+ ``` sh
133
133
pnpm run update:examples
134
134
```
135
135
Original file line number Diff line number Diff line change 74
74
"esbuild" : " ^0.20.2" ,
75
75
"execa" : " ^8.0.1" ,
76
76
"strip-ansi" : " ^7.1.0" ,
77
- "typescript" : " ^5.4.5 " ,
77
+ "typescript" : " ^5.5.4 " ,
78
78
"vite-node" : " ^2.0.5"
79
79
}
80
80
}
You can’t perform that action at this time.
0 commit comments