File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -38,12 +38,12 @@ jobs:
3838 - name : 📦 Install dependencies
3939 run : pnpm install --frozen-lockfile
4040
41- - name : 👀 Lint
42- run : pnpm lint
43-
4441 - name : 🚀 Build
4542 run : pnpm build
4643
44+ - name : 👀 Lint
45+ run : pnpm lint
46+
4747 # - name: 🧪 Test
4848 # run: pnpm test
4949 # env:
Original file line number Diff line number Diff line change @@ -143,7 +143,7 @@ function parseCurserArgs(options: ResolveOffsetConnectionOptions) {
143143 throw new Error ( 'Argument "last" must be a non-negative integer' )
144144
145145 const limit = Math . min ( first ?? last ?? defaultSize , maxSize ) + 1
146- const inverted = after ? ! ! last && ! first : ( ! ! before && ! first ) || ( ! first && ! ! last )
146+ const inverted = after ? ( ! ! last && ! first ) : ( ! ! before && ! first ) || ( ! first && ! ! last ) || ( ! ! before && ! ! last )
147147
148148 return {
149149 before : before ?? undefined ,
You can’t perform that action at this time.
0 commit comments