@rsbuild/core 1.1.1 → 1.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/compiled/chokidar/index.d.ts +318 -189
- package/compiled/chokidar/index.js +1069 -4439
- package/compiled/chokidar/license +1 -1
- package/compiled/chokidar/package.json +1 -1
- package/compiled/tinyglobby/index.d.ts +25 -0
- package/compiled/tinyglobby/index.js +2749 -0
- package/compiled/tinyglobby/index1.js +17 -0
- package/compiled/tinyglobby/license +21 -0
- package/compiled/tinyglobby/package.json +1 -0
- package/dist/ignoreCssLoader.cjs +22 -44
- package/dist/index.cjs +3964 -8135
- package/dist/index.cjs.LICENSE.txt +13 -0
- package/dist/index.js +3957 -8098
- package/dist/index.js.LICENSE.txt +13 -0
- package/dist/transformLoader.cjs +26 -44
- package/dist/transformRawLoader.cjs +26 -53
- package/dist-types/cli/init.d.ts +2 -1
- package/dist-types/config.d.ts +2 -2
- package/dist-types/index.d.ts +1 -1
- package/dist-types/internal.d.ts +1 -13
- package/dist-types/plugins/css.d.ts +1 -2
- package/dist-types/provider/helpers.d.ts +12 -0
- package/dist-types/server/restart.d.ts +4 -0
- package/dist-types/server/watchFiles.d.ts +4 -1
- package/dist-types/types/config.d.ts +14 -6
- package/dist-types/types/rsbuild.d.ts +3 -1
- package/package.json +5 -5
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
The MIT License (MIT)
|
|
2
2
|
|
|
3
|
-
Copyright (c) 2012
|
|
3
|
+
Copyright (c) 2012 Paul Miller (https://paulmillr.com), Elan Shanker
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
6
|
of this software and associated documentation files (the “Software”), to deal
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"name":"chokidar","author":"Paul Miller (https://paulmillr.com)","version":"
|
|
1
|
+
{"name":"chokidar","author":"Paul Miller (https://paulmillr.com)","version":"4.0.1","funding":"https://paulmillr.com/funding/","license":"MIT","types":"index.d.ts","type":"commonjs"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
declare const convertPathToPattern: (path: string) => string;
|
|
2
|
+
declare const escapePath: (path: string) => string;
|
|
3
|
+
declare function isDynamicPattern(pattern: string, options?: {
|
|
4
|
+
caseSensitiveMatch: boolean;
|
|
5
|
+
}): boolean;
|
|
6
|
+
|
|
7
|
+
interface GlobOptions {
|
|
8
|
+
absolute?: boolean;
|
|
9
|
+
cwd?: string;
|
|
10
|
+
patterns?: string | string[];
|
|
11
|
+
ignore?: string | string[];
|
|
12
|
+
dot?: boolean;
|
|
13
|
+
deep?: number;
|
|
14
|
+
followSymbolicLinks?: boolean;
|
|
15
|
+
caseSensitiveMatch?: boolean;
|
|
16
|
+
expandDirectories?: boolean;
|
|
17
|
+
onlyDirectories?: boolean;
|
|
18
|
+
onlyFiles?: boolean;
|
|
19
|
+
}
|
|
20
|
+
declare function glob(patterns: string | string[], options?: Omit<GlobOptions, 'patterns'>): Promise<string[]>;
|
|
21
|
+
declare function glob(options: GlobOptions): Promise<string[]>;
|
|
22
|
+
declare function globSync(patterns: string | string[], options?: Omit<GlobOptions, 'patterns'>): string[];
|
|
23
|
+
declare function globSync(options: GlobOptions): string[];
|
|
24
|
+
|
|
25
|
+
export { type GlobOptions, convertPathToPattern, escapePath, glob, globSync, isDynamicPattern };
|