@serwist/next 10.0.0-preview.8 → 10.0.0-preview.9
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/dist/chunks/schema.js +8 -4
- package/dist/index.js +7 -7
- package/dist/lib/schema.d.ts +63 -218
- package/dist/lib/schema.d.ts.map +1 -1
- package/dist/lib/validator.d.ts.map +1 -1
- package/package.json +14 -14
- package/src/index.ts +4 -4
- package/src/lib/schema.ts +16 -16
- package/src/lib/validator.ts +3 -2
package/dist/chunks/schema.js
CHANGED
|
@@ -2,7 +2,7 @@ import { requiredSwDestPartial } from '@serwist/build/schema';
|
|
|
2
2
|
import { injectManifestOptions as injectManifestOptions$1 } from '@serwist/webpack-plugin/schema';
|
|
3
3
|
import { z } from 'zod';
|
|
4
4
|
|
|
5
|
-
const injectPartial = z.
|
|
5
|
+
const injectPartial = z.strictObject({
|
|
6
6
|
cacheOnNavigation: z.boolean().default(false),
|
|
7
7
|
disable: z.boolean().default(false),
|
|
8
8
|
register: z.boolean().default(true),
|
|
@@ -12,9 +12,13 @@ const injectPartial = z.object({
|
|
|
12
12
|
globPublicPatterns: z.array(z.string()).default([
|
|
13
13
|
"**/*"
|
|
14
14
|
])
|
|
15
|
-
})
|
|
16
|
-
const injectManifestOptions =
|
|
15
|
+
});
|
|
16
|
+
const injectManifestOptions = z.strictObject({
|
|
17
|
+
...injectManifestOptions$1.shape,
|
|
18
|
+
...requiredSwDestPartial.shape,
|
|
19
|
+
...injectPartial.shape
|
|
20
|
+
}).omit({
|
|
17
21
|
disablePrecacheManifest: true
|
|
18
|
-
})
|
|
22
|
+
});
|
|
19
23
|
|
|
20
24
|
export { injectManifestOptions as a, injectPartial as i };
|
package/dist/index.js
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import fs from 'node:fs';
|
|
2
2
|
import path from 'node:path';
|
|
3
3
|
import { fileURLToPath } from 'node:url';
|
|
4
|
+
import { getFileHash } from '@serwist/utils/node';
|
|
4
5
|
import { InjectManifest } from '@serwist/webpack-plugin';
|
|
5
6
|
import { ChildCompilationPlugin, relativeToOutputPath } from '@serwist/webpack-plugin/internal';
|
|
6
|
-
import { getFileHash } from '@serwist/utils/node';
|
|
7
7
|
import { globSync } from 'glob';
|
|
8
8
|
import { createRequire } from 'node:module';
|
|
9
9
|
import chalk from 'chalk';
|
|
10
10
|
import { validationErrorMap, SerwistConfigError } from '@serwist/build/schema';
|
|
11
|
+
import { z } from 'zod';
|
|
11
12
|
import { a as injectManifestOptions } from './chunks/schema.js';
|
|
12
13
|
import '@serwist/webpack-plugin/schema';
|
|
13
|
-
import 'zod';
|
|
14
14
|
|
|
15
15
|
const findFirstTruthy = (arr, fn)=>{
|
|
16
16
|
for (const i of arr){
|
|
@@ -84,12 +84,12 @@ const event = (...message)=>{
|
|
|
84
84
|
|
|
85
85
|
const validateInjectManifestOptions = (input)=>{
|
|
86
86
|
const result = injectManifestOptions.safeParse(input, {
|
|
87
|
-
|
|
87
|
+
error: validationErrorMap
|
|
88
88
|
});
|
|
89
89
|
if (!result.success) {
|
|
90
90
|
throw new SerwistConfigError({
|
|
91
91
|
moduleName: "@serwist/next",
|
|
92
|
-
message:
|
|
92
|
+
message: z.prettifyError(result.error)
|
|
93
93
|
});
|
|
94
94
|
}
|
|
95
95
|
return result.data;
|
|
@@ -191,8 +191,8 @@ const withSerwistInit = (userOptions)=>{
|
|
|
191
191
|
});
|
|
192
192
|
}
|
|
193
193
|
const shouldBuildSWEntryWorker = cacheOnNavigation;
|
|
194
|
-
let swEntryPublicPath
|
|
195
|
-
let swEntryWorkerDest
|
|
194
|
+
let swEntryPublicPath;
|
|
195
|
+
let swEntryWorkerDest;
|
|
196
196
|
if (shouldBuildSWEntryWorker) {
|
|
197
197
|
const swEntryWorkerSrc = path.join(dirname, "sw-entry-worker.js");
|
|
198
198
|
const swEntryName = `swe-worker-${getContentHash(swEntryWorkerSrc, dev)}.js`;
|
|
@@ -234,7 +234,7 @@ const withSerwistInit = (userOptions)=>{
|
|
|
234
234
|
({ asset, compilation })=>{
|
|
235
235
|
const swDestRelativeOutput = relativeToOutputPath(compilation, swDest);
|
|
236
236
|
const swAsset = compilation.getAsset(swDestRelativeOutput);
|
|
237
|
-
return asset.name === swAsset?.name || asset.name.startsWith("server/") || /^[
|
|
237
|
+
return asset.name === swAsset?.name || asset.name.startsWith("server/") || /^[^/]*\.json$/.test(asset.name) || dev && !asset.name.startsWith("static/runtime/");
|
|
238
238
|
}
|
|
239
239
|
],
|
|
240
240
|
manifestTransforms: [
|
package/dist/lib/schema.d.ts
CHANGED
|
@@ -6,240 +6,85 @@ export declare const injectPartial: z.ZodObject<{
|
|
|
6
6
|
reloadOnOnline: z.ZodDefault<z.ZodBoolean>;
|
|
7
7
|
scope: z.ZodOptional<z.ZodString>;
|
|
8
8
|
swUrl: z.ZodDefault<z.ZodString>;
|
|
9
|
-
globPublicPatterns: z.ZodDefault<z.ZodArray<z.ZodString
|
|
10
|
-
},
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
additionalPrecacheEntries: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
9
|
+
globPublicPatterns: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
10
|
+
}, z.core.$strict>;
|
|
11
|
+
export declare const injectManifestOptions: z.ZodObject<{
|
|
12
|
+
cacheOnNavigation: z.ZodDefault<z.ZodBoolean>;
|
|
13
|
+
disable: z.ZodDefault<z.ZodBoolean>;
|
|
14
|
+
register: z.ZodDefault<z.ZodBoolean>;
|
|
15
|
+
reloadOnOnline: z.ZodDefault<z.ZodBoolean>;
|
|
16
|
+
scope: z.ZodOptional<z.ZodString>;
|
|
17
|
+
swUrl: z.ZodDefault<z.ZodString>;
|
|
18
|
+
globPublicPatterns: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
19
|
+
swDest: z.ZodString;
|
|
20
|
+
compileSrc: z.ZodDefault<z.ZodBoolean>;
|
|
21
|
+
webpackCompilationPlugins: z.ZodOptional<z.ZodArray<z.ZodAny>>;
|
|
22
|
+
injectionPoint: z.ZodDefault<z.ZodString>;
|
|
23
|
+
swSrc: z.ZodString;
|
|
24
|
+
chunks: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
25
|
+
exclude: z.ZodDefault<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodCustom<RegExp, RegExp>, z.ZodPipe<z.ZodCustom<z.core.$InferInnerFunctionType<z.ZodTuple<[z.ZodAny], null>, z.ZodBoolean>, z.core.$InferInnerFunctionType<z.ZodTuple<[z.ZodAny], null>, z.ZodBoolean>>, z.ZodTransform<(args_0: any) => boolean, z.core.$InferInnerFunctionType<z.ZodTuple<[z.ZodAny], null>, z.ZodBoolean>>>]>>>;
|
|
26
|
+
excludeChunks: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
27
|
+
include: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodCustom<RegExp, RegExp>, z.ZodPipe<z.ZodCustom<z.core.$InferInnerFunctionType<z.ZodTuple<[z.ZodAny], null>, z.ZodBoolean>, z.core.$InferInnerFunctionType<z.ZodTuple<[z.ZodAny], null>, z.ZodBoolean>>, z.ZodTransform<(args_0: any) => boolean, z.core.$InferInnerFunctionType<z.ZodTuple<[z.ZodAny], null>, z.ZodBoolean>>>]>>>;
|
|
28
|
+
additionalPrecacheEntries: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
29
29
|
integrity: z.ZodOptional<z.ZodString>;
|
|
30
30
|
revision: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31
31
|
url: z.ZodString;
|
|
32
|
-
},
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
}, {
|
|
37
|
-
url: string;
|
|
38
|
-
integrity?: string | undefined;
|
|
39
|
-
revision?: string | null | undefined;
|
|
40
|
-
}>]>, "many">>;
|
|
41
|
-
disablePrecacheManifest: z.ZodDefault<z.ZodBoolean>;
|
|
42
|
-
dontCacheBustURLsMatching: z.ZodOptional<z.ZodType<RegExp, z.ZodTypeDef, RegExp>>;
|
|
43
|
-
manifestTransforms: z.ZodOptional<z.ZodArray<z.ZodFunction<z.ZodTuple<[z.ZodArray<z.ZodObject<{
|
|
32
|
+
}, z.core.$strict>]>>>;
|
|
33
|
+
dontCacheBustURLsMatching: z.ZodOptional<z.ZodCustom<RegExp, RegExp>>;
|
|
34
|
+
manifestTransforms: z.ZodOptional<z.ZodArray<z.ZodPipe<z.ZodCustom<z.core.$InferInnerFunctionTypeAsync<z.ZodTuple<[z.ZodArray<z.ZodObject<{
|
|
35
|
+
size: z.ZodNumber;
|
|
44
36
|
integrity: z.ZodOptional<z.ZodString>;
|
|
45
37
|
revision: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
46
38
|
url: z.ZodString;
|
|
47
|
-
}
|
|
48
|
-
size: z.ZodNumber;
|
|
49
|
-
}, "strip", z.ZodTypeAny, {
|
|
50
|
-
url: string;
|
|
51
|
-
size: number;
|
|
52
|
-
integrity?: string | undefined;
|
|
53
|
-
revision?: string | null | undefined;
|
|
54
|
-
}, {
|
|
55
|
-
url: string;
|
|
56
|
-
size: number;
|
|
57
|
-
integrity?: string | undefined;
|
|
58
|
-
revision?: string | null | undefined;
|
|
59
|
-
}>, "many">, z.ZodOptional<z.ZodUnknown>], null>, z.ZodUnion<[z.ZodPromise<z.ZodObject<{
|
|
39
|
+
}, z.core.$strip>>, z.ZodOptional<z.ZodUnknown>], null>, z.ZodObject<{
|
|
60
40
|
manifest: z.ZodArray<z.ZodObject<{
|
|
41
|
+
size: z.ZodNumber;
|
|
61
42
|
integrity: z.ZodOptional<z.ZodString>;
|
|
62
43
|
revision: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
63
44
|
url: z.ZodString;
|
|
64
|
-
}
|
|
45
|
+
}, z.core.$strip>>;
|
|
46
|
+
warnings: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
47
|
+
}, z.core.$strict>>, z.core.$InferInnerFunctionTypeAsync<z.ZodTuple<[z.ZodArray<z.ZodObject<{
|
|
48
|
+
size: z.ZodNumber;
|
|
49
|
+
integrity: z.ZodOptional<z.ZodString>;
|
|
50
|
+
revision: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
51
|
+
url: z.ZodString;
|
|
52
|
+
}, z.core.$strip>>, z.ZodOptional<z.ZodUnknown>], null>, z.ZodObject<{
|
|
53
|
+
manifest: z.ZodArray<z.ZodObject<{
|
|
65
54
|
size: z.ZodNumber;
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
warnings: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
78
|
-
}, "strict", z.ZodTypeAny, {
|
|
79
|
-
manifest: {
|
|
80
|
-
url: string;
|
|
81
|
-
size: number;
|
|
82
|
-
integrity?: string | undefined;
|
|
83
|
-
revision?: string | null | undefined;
|
|
84
|
-
}[];
|
|
85
|
-
warnings?: string[] | undefined;
|
|
86
|
-
}, {
|
|
87
|
-
manifest: {
|
|
88
|
-
url: string;
|
|
89
|
-
size: number;
|
|
90
|
-
integrity?: string | undefined;
|
|
91
|
-
revision?: string | null | undefined;
|
|
92
|
-
}[];
|
|
93
|
-
warnings?: string[] | undefined;
|
|
94
|
-
}>>, z.ZodObject<{
|
|
55
|
+
integrity: z.ZodOptional<z.ZodString>;
|
|
56
|
+
revision: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
57
|
+
url: z.ZodString;
|
|
58
|
+
}, z.core.$strip>>;
|
|
59
|
+
warnings: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
60
|
+
}, z.core.$strict>>>, z.ZodTransform<z.core.$InferInnerFunctionTypeAsync<z.ZodTuple<[z.ZodArray<z.ZodObject<{
|
|
61
|
+
size: z.ZodNumber;
|
|
62
|
+
integrity: z.ZodOptional<z.ZodString>;
|
|
63
|
+
revision: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
64
|
+
url: z.ZodString;
|
|
65
|
+
}, z.core.$strip>>, z.ZodOptional<z.ZodUnknown>], null>, z.ZodObject<{
|
|
95
66
|
manifest: z.ZodArray<z.ZodObject<{
|
|
67
|
+
size: z.ZodNumber;
|
|
96
68
|
integrity: z.ZodOptional<z.ZodString>;
|
|
97
69
|
revision: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
98
70
|
url: z.ZodString;
|
|
99
|
-
}
|
|
71
|
+
}, z.core.$strip>>;
|
|
72
|
+
warnings: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
73
|
+
}, z.core.$strict>>, z.core.$InferInnerFunctionTypeAsync<z.ZodTuple<[z.ZodArray<z.ZodObject<{
|
|
74
|
+
size: z.ZodNumber;
|
|
75
|
+
integrity: z.ZodOptional<z.ZodString>;
|
|
76
|
+
revision: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
77
|
+
url: z.ZodString;
|
|
78
|
+
}, z.core.$strip>>, z.ZodOptional<z.ZodUnknown>], null>, z.ZodObject<{
|
|
79
|
+
manifest: z.ZodArray<z.ZodObject<{
|
|
100
80
|
size: z.ZodNumber;
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
url: string;
|
|
108
|
-
size: number;
|
|
109
|
-
integrity?: string | undefined;
|
|
110
|
-
revision?: string | null | undefined;
|
|
111
|
-
}>, "many">;
|
|
112
|
-
warnings: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
113
|
-
}, "strict", z.ZodTypeAny, {
|
|
114
|
-
manifest: {
|
|
115
|
-
url: string;
|
|
116
|
-
size: number;
|
|
117
|
-
integrity?: string | undefined;
|
|
118
|
-
revision?: string | null | undefined;
|
|
119
|
-
}[];
|
|
120
|
-
warnings?: string[] | undefined;
|
|
121
|
-
}, {
|
|
122
|
-
manifest: {
|
|
123
|
-
url: string;
|
|
124
|
-
size: number;
|
|
125
|
-
integrity?: string | undefined;
|
|
126
|
-
revision?: string | null | undefined;
|
|
127
|
-
}[];
|
|
128
|
-
warnings?: string[] | undefined;
|
|
129
|
-
}>]>>, "many">>;
|
|
81
|
+
integrity: z.ZodOptional<z.ZodString>;
|
|
82
|
+
revision: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
83
|
+
url: z.ZodString;
|
|
84
|
+
}, z.core.$strip>>;
|
|
85
|
+
warnings: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
86
|
+
}, z.core.$strict>>>>>>;
|
|
130
87
|
maximumFileSizeToCacheInBytes: z.ZodDefault<z.ZodNumber>;
|
|
131
88
|
modifyURLPrefix: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
132
|
-
|
|
133
|
-
exclude: z.ZodDefault<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodType<RegExp, z.ZodTypeDef, RegExp>, z.ZodFunction<z.ZodTuple<[z.ZodAny], null>, z.ZodBoolean>]>, "many">>;
|
|
134
|
-
excludeChunks: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
135
|
-
include: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodType<RegExp, z.ZodTypeDef, RegExp>, z.ZodFunction<z.ZodTuple<[z.ZodAny], null>, z.ZodBoolean>]>, "many">>;
|
|
136
|
-
injectionPoint: z.ZodDefault<z.ZodString>;
|
|
137
|
-
swSrc: z.ZodString;
|
|
138
|
-
compileSrc: z.ZodDefault<z.ZodBoolean>;
|
|
139
|
-
webpackCompilationPlugins: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
|
|
140
|
-
} & {
|
|
141
|
-
swDest: z.ZodString;
|
|
142
|
-
} & {
|
|
143
|
-
cacheOnNavigation: z.ZodDefault<z.ZodBoolean>;
|
|
144
|
-
disable: z.ZodDefault<z.ZodBoolean>;
|
|
145
|
-
register: z.ZodDefault<z.ZodBoolean>;
|
|
146
|
-
reloadOnOnline: z.ZodDefault<z.ZodBoolean>;
|
|
147
|
-
scope: z.ZodOptional<z.ZodString>;
|
|
148
|
-
swUrl: z.ZodDefault<z.ZodString>;
|
|
149
|
-
globPublicPatterns: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
150
|
-
}, "disablePrecacheManifest">, "strict", z.ZodTypeAny, {
|
|
151
|
-
cacheOnNavigation: boolean;
|
|
152
|
-
disable: boolean;
|
|
153
|
-
register: boolean;
|
|
154
|
-
reloadOnOnline: boolean;
|
|
155
|
-
swUrl: string;
|
|
156
|
-
globPublicPatterns: string[];
|
|
157
|
-
maximumFileSizeToCacheInBytes: number;
|
|
158
|
-
exclude: (string | RegExp | ((args_0: any) => boolean))[];
|
|
159
|
-
injectionPoint: string;
|
|
160
|
-
swSrc: string;
|
|
161
|
-
compileSrc: boolean;
|
|
162
|
-
swDest: string;
|
|
163
|
-
scope?: string | undefined;
|
|
164
|
-
additionalPrecacheEntries?: (string | {
|
|
165
|
-
url: string;
|
|
166
|
-
integrity?: string | undefined;
|
|
167
|
-
revision?: string | null | undefined;
|
|
168
|
-
})[] | undefined;
|
|
169
|
-
dontCacheBustURLsMatching?: RegExp | undefined;
|
|
170
|
-
manifestTransforms?: ((args_0: {
|
|
171
|
-
url: string;
|
|
172
|
-
size: number;
|
|
173
|
-
integrity?: string | undefined;
|
|
174
|
-
revision?: string | null | undefined;
|
|
175
|
-
}[], args_1: unknown) => {
|
|
176
|
-
manifest: {
|
|
177
|
-
url: string;
|
|
178
|
-
size: number;
|
|
179
|
-
integrity?: string | undefined;
|
|
180
|
-
revision?: string | null | undefined;
|
|
181
|
-
}[];
|
|
182
|
-
warnings?: string[] | undefined;
|
|
183
|
-
} | Promise<{
|
|
184
|
-
manifest: {
|
|
185
|
-
url: string;
|
|
186
|
-
size: number;
|
|
187
|
-
integrity?: string | undefined;
|
|
188
|
-
revision?: string | null | undefined;
|
|
189
|
-
}[];
|
|
190
|
-
warnings?: string[] | undefined;
|
|
191
|
-
}>)[] | undefined;
|
|
192
|
-
modifyURLPrefix?: Record<string, string> | undefined;
|
|
193
|
-
chunks?: string[] | undefined;
|
|
194
|
-
excludeChunks?: string[] | undefined;
|
|
195
|
-
include?: (string | RegExp | ((args_0: any) => boolean))[] | undefined;
|
|
196
|
-
webpackCompilationPlugins?: any[] | undefined;
|
|
197
|
-
}, {
|
|
198
|
-
swSrc: string;
|
|
199
|
-
swDest: string;
|
|
200
|
-
cacheOnNavigation?: boolean | undefined;
|
|
201
|
-
disable?: boolean | undefined;
|
|
202
|
-
register?: boolean | undefined;
|
|
203
|
-
reloadOnOnline?: boolean | undefined;
|
|
204
|
-
scope?: string | undefined;
|
|
205
|
-
swUrl?: string | undefined;
|
|
206
|
-
globPublicPatterns?: string[] | undefined;
|
|
207
|
-
additionalPrecacheEntries?: (string | {
|
|
208
|
-
url: string;
|
|
209
|
-
integrity?: string | undefined;
|
|
210
|
-
revision?: string | null | undefined;
|
|
211
|
-
})[] | undefined;
|
|
212
|
-
dontCacheBustURLsMatching?: RegExp | undefined;
|
|
213
|
-
manifestTransforms?: ((args_0: {
|
|
214
|
-
url: string;
|
|
215
|
-
size: number;
|
|
216
|
-
integrity?: string | undefined;
|
|
217
|
-
revision?: string | null | undefined;
|
|
218
|
-
}[], args_1: unknown) => {
|
|
219
|
-
manifest: {
|
|
220
|
-
url: string;
|
|
221
|
-
size: number;
|
|
222
|
-
integrity?: string | undefined;
|
|
223
|
-
revision?: string | null | undefined;
|
|
224
|
-
}[];
|
|
225
|
-
warnings?: string[] | undefined;
|
|
226
|
-
} | Promise<{
|
|
227
|
-
manifest: {
|
|
228
|
-
url: string;
|
|
229
|
-
size: number;
|
|
230
|
-
integrity?: string | undefined;
|
|
231
|
-
revision?: string | null | undefined;
|
|
232
|
-
}[];
|
|
233
|
-
warnings?: string[] | undefined;
|
|
234
|
-
}>)[] | undefined;
|
|
235
|
-
maximumFileSizeToCacheInBytes?: number | undefined;
|
|
236
|
-
modifyURLPrefix?: Record<string, string> | undefined;
|
|
237
|
-
chunks?: string[] | undefined;
|
|
238
|
-
exclude?: (string | RegExp | ((args_0: any) => boolean))[] | undefined;
|
|
239
|
-
excludeChunks?: string[] | undefined;
|
|
240
|
-
include?: (string | RegExp | ((args_0: any) => boolean))[] | undefined;
|
|
241
|
-
injectionPoint?: string | undefined;
|
|
242
|
-
compileSrc?: boolean | undefined;
|
|
243
|
-
webpackCompilationPlugins?: any[] | undefined;
|
|
244
|
-
}>;
|
|
89
|
+
}, z.core.$strict>;
|
|
245
90
|
//# sourceMappingURL=schema.d.ts.map
|
package/dist/lib/schema.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../src/lib/schema.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,eAAO,MAAM,aAAa
|
|
1
|
+
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../src/lib/schema.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,eAAO,MAAM,aAAa;;;;;;;;kBAQxB,CAAC;AAEH,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAMQ,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"validator.d.ts","sourceRoot":"","sources":["../../src/lib/validator.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"validator.d.ts","sourceRoot":"","sources":["../../src/lib/validator.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,6BAA6B,EAAE,MAAM,YAAY,CAAC;AAEhE,eAAO,MAAM,6BAA6B,GAAI,OAAO,OAAO,KAAG,6BAQ9D,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@serwist/next",
|
|
3
|
-
"version": "10.0.0-preview.
|
|
3
|
+
"version": "10.0.0-preview.9",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"description": "A module that integrates Serwist into your Next.js application.",
|
|
@@ -64,24 +64,24 @@
|
|
|
64
64
|
},
|
|
65
65
|
"dependencies": {
|
|
66
66
|
"chalk": "5.4.1",
|
|
67
|
-
"glob": "11.0.
|
|
68
|
-
"zod": "
|
|
69
|
-
"@serwist/build": "10.0.0-preview.
|
|
70
|
-
"@serwist/utils": "10.0.0-preview.
|
|
71
|
-
"@serwist/webpack-plugin": "10.0.0-preview.
|
|
72
|
-
"@serwist/window": "10.0.0-preview.
|
|
73
|
-
"serwist": "10.0.0-preview.
|
|
67
|
+
"glob": "11.0.3",
|
|
68
|
+
"zod": "4.0.5",
|
|
69
|
+
"@serwist/build": "10.0.0-preview.9",
|
|
70
|
+
"@serwist/utils": "10.0.0-preview.9",
|
|
71
|
+
"@serwist/webpack-plugin": "10.0.0-preview.9",
|
|
72
|
+
"@serwist/window": "10.0.0-preview.9",
|
|
73
|
+
"serwist": "10.0.0-preview.9"
|
|
74
74
|
},
|
|
75
75
|
"devDependencies": {
|
|
76
|
-
"@types/node": "
|
|
77
|
-
"next": "15.
|
|
76
|
+
"@types/node": "24.0.14",
|
|
77
|
+
"next": "15.4.1",
|
|
78
78
|
"react": "19.1.0",
|
|
79
79
|
"react-dom": "19.1.0",
|
|
80
|
-
"rollup": "4.
|
|
81
|
-
"type-fest": "4.
|
|
80
|
+
"rollup": "4.45.1",
|
|
81
|
+
"type-fest": "4.41.0",
|
|
82
82
|
"typescript": "5.8.3",
|
|
83
|
-
"webpack": "5.
|
|
84
|
-
"@serwist/configs": "10.0.0-preview.
|
|
83
|
+
"webpack": "5.100.2",
|
|
84
|
+
"@serwist/configs": "10.0.0-preview.9"
|
|
85
85
|
},
|
|
86
86
|
"peerDependencies": {
|
|
87
87
|
"next": ">=14.0.0",
|
package/src/index.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import fs from "node:fs";
|
|
2
2
|
import path from "node:path";
|
|
3
3
|
import { fileURLToPath } from "node:url";
|
|
4
|
+
import { getFileHash } from "@serwist/utils/node";
|
|
4
5
|
import { InjectManifest } from "@serwist/webpack-plugin";
|
|
5
6
|
import { ChildCompilationPlugin, relativeToOutputPath } from "@serwist/webpack-plugin/internal";
|
|
6
|
-
import { getFileHash } from "@serwist/utils/node";
|
|
7
7
|
import { globSync } from "glob";
|
|
8
8
|
import type { NextConfig } from "next";
|
|
9
9
|
import type { Compilation, Configuration, default as Webpack } from "webpack";
|
|
@@ -147,8 +147,8 @@ const withSerwistInit = (userOptions: InjectManifestOptions): ((nextConfig?: Nex
|
|
|
147
147
|
}
|
|
148
148
|
|
|
149
149
|
const shouldBuildSWEntryWorker = cacheOnNavigation;
|
|
150
|
-
let swEntryPublicPath: string | undefined
|
|
151
|
-
let swEntryWorkerDest: string | undefined
|
|
150
|
+
let swEntryPublicPath: string | undefined;
|
|
151
|
+
let swEntryWorkerDest: string | undefined;
|
|
152
152
|
|
|
153
153
|
if (shouldBuildSWEntryWorker) {
|
|
154
154
|
const swEntryWorkerSrc = path.join(dirname, "sw-entry-worker.js");
|
|
@@ -207,7 +207,7 @@ const withSerwistInit = (userOptions: InjectManifestOptions): ((nextConfig?: Nex
|
|
|
207
207
|
// This excludes all JSON files in the compilation directory by filtering
|
|
208
208
|
// out paths that have slashes or don't end with `.json`. Only said files
|
|
209
209
|
// match this criterion.
|
|
210
|
-
/^[
|
|
210
|
+
/^[^/]*\.json$/.test(asset.name) ||
|
|
211
211
|
(dev && !asset.name.startsWith("static/runtime/"))
|
|
212
212
|
);
|
|
213
213
|
},
|
package/src/lib/schema.ts
CHANGED
|
@@ -2,20 +2,20 @@ import { requiredSwDestPartial } from "@serwist/build/schema";
|
|
|
2
2
|
import { injectManifestOptions as webpackInjectManifestOptions } from "@serwist/webpack-plugin/schema";
|
|
3
3
|
import { z } from "zod";
|
|
4
4
|
|
|
5
|
-
export const injectPartial = z
|
|
6
|
-
.
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
})
|
|
15
|
-
.strict("Do not pass invalid properties to NextInjectManifestPartial!");
|
|
5
|
+
export const injectPartial = z.strictObject({
|
|
6
|
+
cacheOnNavigation: z.boolean().default(false),
|
|
7
|
+
disable: z.boolean().default(false),
|
|
8
|
+
register: z.boolean().default(true),
|
|
9
|
+
reloadOnOnline: z.boolean().default(true),
|
|
10
|
+
scope: z.string().optional(),
|
|
11
|
+
swUrl: z.string().default("/sw.js"),
|
|
12
|
+
globPublicPatterns: z.array(z.string()).default(["**/*"]),
|
|
13
|
+
});
|
|
16
14
|
|
|
17
|
-
export const injectManifestOptions =
|
|
18
|
-
.
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
15
|
+
export const injectManifestOptions = z
|
|
16
|
+
.strictObject({
|
|
17
|
+
...webpackInjectManifestOptions.shape,
|
|
18
|
+
...requiredSwDestPartial.shape,
|
|
19
|
+
...injectPartial.shape,
|
|
20
|
+
})
|
|
21
|
+
.omit({ disablePrecacheManifest: true });
|
package/src/lib/validator.ts
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
import { SerwistConfigError, validationErrorMap } from "@serwist/build/schema";
|
|
2
|
+
import { z } from "zod";
|
|
2
3
|
import { injectManifestOptions } from "./schema.js";
|
|
3
4
|
import type { InjectManifestOptionsComplete } from "./types.js";
|
|
4
5
|
|
|
5
6
|
export const validateInjectManifestOptions = (input: unknown): InjectManifestOptionsComplete => {
|
|
6
7
|
const result = injectManifestOptions.safeParse(input, {
|
|
7
|
-
|
|
8
|
+
error: validationErrorMap,
|
|
8
9
|
});
|
|
9
10
|
if (!result.success) {
|
|
10
|
-
throw new SerwistConfigError({ moduleName: "@serwist/next", message:
|
|
11
|
+
throw new SerwistConfigError({ moduleName: "@serwist/next", message: z.prettifyError(result.error) });
|
|
11
12
|
}
|
|
12
13
|
return result.data;
|
|
13
14
|
};
|