File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed
website/pages/docs/packages Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -3,9 +3,9 @@ import { globSync } from "tinyglobby";
3
3
4
4
export const glob = ( patterns : string [ ] , exclude : ReadonlyArray < string > = [ "**/node_modules/**" ] ) =>
5
5
Effect . try ( {
6
- catch : ( error ) => `[Glob] Unable to scan files with patterns ' ${ String ( patterns ) } ': ${ String ( error ) } ` ,
6
+ catch : ( error ) => error ,
7
7
try : ( ) =>
8
8
globSync ( patterns , {
9
- ignore : exclude . slice ( ) ,
9
+ ignore : [ ... exclude ] ,
10
10
} ) ,
11
11
} ) ;
Original file line number Diff line number Diff line change @@ -29,4 +29,9 @@ export default {
29
29
href : "https://www.npmjs.com/package/eslint-plugin-react-naming-convention" ,
30
30
newWindow : true ,
31
31
} ,
32
+ "eslint-plugin-react-debug" : {
33
+ title : "eslint-plugin-react-debug" ,
34
+ href : "https://www.npmjs.com/package/eslint-plugin-react-debug" ,
35
+ newWindow : true ,
36
+ } ,
32
37
} as const ;
You can’t perform that action at this time.
0 commit comments