File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed
Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 7979 }
8080 },
8181 "lint-staged" : {
82- "*.{ts,js}" : [
82+ "*.{?(c|m)(j|t)s?(x),json,y?(a)ml}" : [
83+ " eslint --fix" ,
8384 " prettier --write"
85+ ],
86+ "!*.{?(c|m)(j|t)s?(x),json,y?(a)ml}" : [
87+ " prettier --write --ignore-unknown"
8488 ]
8589 }
8690}
Original file line number Diff line number Diff line change 11export { Dispatcher } from './dispatcher'
22export { pmap as default , pmap } from './pmap'
33export { pmapWorker } from './worker'
4- export { pLimit , limitFunction , createLimitedVersionOfFn } from './limit'
4+ export { createLimitedVersionOfFn , limitFunction , pLimit } from './limit'
55export { pFilter } from './filter'
Original file line number Diff line number Diff line change 11/* eslint-disable require-await */
22
3+ import { describe , expect , it } from 'vitest'
34import { pFilter } from '../src'
4- import { describe , it , expect } from 'vitest'
55
66describe ( 'pFilter' , ( ) => {
77 it ( 'should works' , async ( ) => {
You can’t perform that action at this time.
0 commit comments