@nuxt/kit 4.3.1 → 4.4.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/README.md +4 -4
- package/dist/index.d.mts +8 -18
- package/dist/index.mjs +307 -11
- package/package.json +8 -8
- package/dist/THIRD-PARTY-LICENSES.md +0 -1129
- package/dist/_chunks/libs/@oxc-project/types.d.mts +0 -1300
- package/dist/_chunks/libs/@rolldown/pluginutils.d.mts +0 -63
- package/dist/_chunks/libs/@rollup/plugin-commonjs.d.mts +0 -1345
- package/dist/_chunks/libs/@vercel/nft.d.mts +0 -114
- package/dist/_chunks/libs/chokidar.d.mts +0 -34
- package/dist/_chunks/libs/compatx.d.mts +0 -47
- package/dist/_chunks/libs/crossws.d.mts +0 -7
- package/dist/_chunks/libs/db0.d.mts +0 -8
- package/dist/_chunks/libs/esbuild.d.mts +0 -137
- package/dist/_chunks/libs/httpxy.d.mts +0 -79
- package/dist/_chunks/libs/ioredis.d.mts +0 -6
- package/dist/_chunks/libs/listhen.d.mts +0 -7
- package/dist/_chunks/libs/magic-string.d.mts +0 -220
- package/dist/_chunks/libs/nitro.d.mts +0 -9879
- package/dist/_chunks/libs/nitropack.d.mts +0 -3343
|
@@ -1,63 +0,0 @@
|
|
|
1
|
-
//#region ../../node_modules/.pnpm/@rolldown+pluginutils@1.0.0-rc.3/node_modules/@rolldown/pluginutils/dist/filter/composable-filters.d.ts
|
|
2
|
-
type StringOrRegExp = string | RegExp;
|
|
3
|
-
type PluginModuleType = 'js' | 'jsx' | 'ts' | 'tsx' | 'json' | 'text' | 'base64' | 'dataurl' | 'binary' | 'empty' | (string & {});
|
|
4
|
-
type FilterExpression = And | Or | Not | Id | ImporterId | ModuleType | Code | Query;
|
|
5
|
-
type TopLevelFilterExpression = Include | Exclude;
|
|
6
|
-
declare class And {
|
|
7
|
-
kind: 'and';
|
|
8
|
-
args: FilterExpression[];
|
|
9
|
-
constructor(...args: FilterExpression[]);
|
|
10
|
-
}
|
|
11
|
-
declare class Or {
|
|
12
|
-
kind: 'or';
|
|
13
|
-
args: FilterExpression[];
|
|
14
|
-
constructor(...args: FilterExpression[]);
|
|
15
|
-
}
|
|
16
|
-
declare class Not {
|
|
17
|
-
kind: 'not';
|
|
18
|
-
expr: FilterExpression;
|
|
19
|
-
constructor(expr: FilterExpression);
|
|
20
|
-
}
|
|
21
|
-
interface IdParams {
|
|
22
|
-
cleanUrl?: boolean;
|
|
23
|
-
}
|
|
24
|
-
declare class Id {
|
|
25
|
-
kind: 'id';
|
|
26
|
-
pattern: StringOrRegExp;
|
|
27
|
-
params: IdParams;
|
|
28
|
-
constructor(pattern: StringOrRegExp, params?: IdParams);
|
|
29
|
-
}
|
|
30
|
-
declare class ImporterId {
|
|
31
|
-
kind: 'importerId';
|
|
32
|
-
pattern: StringOrRegExp;
|
|
33
|
-
params: IdParams;
|
|
34
|
-
constructor(pattern: StringOrRegExp, params?: IdParams);
|
|
35
|
-
}
|
|
36
|
-
declare class ModuleType {
|
|
37
|
-
kind: 'moduleType';
|
|
38
|
-
pattern: PluginModuleType;
|
|
39
|
-
constructor(pattern: PluginModuleType);
|
|
40
|
-
}
|
|
41
|
-
declare class Code {
|
|
42
|
-
kind: 'code';
|
|
43
|
-
pattern: StringOrRegExp;
|
|
44
|
-
constructor(expr: StringOrRegExp);
|
|
45
|
-
}
|
|
46
|
-
declare class Query {
|
|
47
|
-
kind: 'query';
|
|
48
|
-
key: string;
|
|
49
|
-
pattern: StringOrRegExp | boolean;
|
|
50
|
-
constructor(key: string, pattern: StringOrRegExp | boolean);
|
|
51
|
-
}
|
|
52
|
-
declare class Include {
|
|
53
|
-
kind: 'include';
|
|
54
|
-
expr: FilterExpression;
|
|
55
|
-
constructor(expr: FilterExpression);
|
|
56
|
-
}
|
|
57
|
-
declare class Exclude {
|
|
58
|
-
kind: 'exclude';
|
|
59
|
-
expr: FilterExpression;
|
|
60
|
-
constructor(expr: FilterExpression);
|
|
61
|
-
}
|
|
62
|
-
//#endregion
|
|
63
|
-
export { TopLevelFilterExpression as t };
|