@serwist/sw 8.0.0 → 8.0.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/dist/disableDevLogs.d.ts +0 -1
- package/dist/handlePrecaching.d.ts +0 -1
- package/dist/index.d.ts +1 -2
- package/dist/index.js +7 -1
- package/dist/index.old.cjs +7 -1
- package/dist/nonNullable.d.ts +0 -1
- package/dist/registerRuntimeCaching.d.ts +0 -1
- package/package.json +22 -18
- package/.turbo/turbo-build.log +0 -10
- package/.turbo/turbo-lint.log +0 -4
- package/.turbo/turbo-typecheck.log +0 -4
- package/CHANGELOG.md +0 -43
- package/dist/disableDevLogs.d.ts.map +0 -1
- package/dist/handlePrecaching.d.ts.map +0 -1
- package/dist/index.d.ts.map +0 -1
- package/dist/nonNullable.d.ts.map +0 -1
- package/dist/registerRuntimeCaching.d.ts.map +0 -1
- package/rollup.config.js +0 -27
- package/src/disableDevLogs.ts +0 -7
- package/src/handlePrecaching.ts +0 -37
- package/src/index.ts +0 -77
- package/src/nonNullable.ts +0 -1
- package/src/registerRuntimeCaching.ts +0 -65
- package/tsconfig.json +0 -8
package/dist/disableDevLogs.d.ts
CHANGED
|
@@ -11,4 +11,3 @@ export type HandlePrecachingOptions = {
|
|
|
11
11
|
navigateFallback?: never;
|
|
12
12
|
});
|
|
13
13
|
export declare const handlePrecaching: ({ precacheEntries, precacheOptions, cleanupOutdatedCaches: shouldCleanupOutdatedCaches, ...options }: HandlePrecachingOptions) => void;
|
|
14
|
-
//# sourceMappingURL=handlePrecaching.d.ts.map
|
package/dist/index.d.ts
CHANGED
|
@@ -10,9 +10,8 @@ export type SerwistOptions = HandlePrecachingOptions & {
|
|
|
10
10
|
cacheId?: string | undefined;
|
|
11
11
|
clientsClaim?: boolean;
|
|
12
12
|
runtimeCaching?: RuntimeCaching[];
|
|
13
|
-
offlineAnalyticsConfig?: GoogleAnalyticsInitializeOptions;
|
|
13
|
+
offlineAnalyticsConfig?: GoogleAnalyticsInitializeOptions | boolean;
|
|
14
14
|
disableDevLogs?: boolean;
|
|
15
15
|
};
|
|
16
16
|
export declare const installSerwist: ({ precacheEntries, precacheOptions, cleanupOutdatedCaches, skipWaiting: shouldSkipWaiting, importScripts: scriptsToImport, navigationPreload, cacheId, clientsClaim: shouldClaimClients, runtimeCaching, offlineAnalyticsConfig, disableDevLogs: shouldDisableDevLogs, ...options }: SerwistOptions) => void;
|
|
17
17
|
export { disableDevLogs, handlePrecaching, registerRuntimeCaching };
|
|
18
|
-
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.js
CHANGED
|
@@ -97,7 +97,13 @@ const installSerwist = ({ precacheEntries, precacheOptions, cleanupOutdatedCache
|
|
|
97
97
|
}
|
|
98
98
|
});
|
|
99
99
|
if (runtimeCaching !== undefined) registerRuntimeCaching(...runtimeCaching);
|
|
100
|
-
if (offlineAnalyticsConfig !== undefined)
|
|
100
|
+
if (offlineAnalyticsConfig !== undefined) {
|
|
101
|
+
if (typeof offlineAnalyticsConfig === "boolean") {
|
|
102
|
+
offlineAnalyticsConfig && initialize();
|
|
103
|
+
} else {
|
|
104
|
+
initialize(offlineAnalyticsConfig);
|
|
105
|
+
}
|
|
106
|
+
}
|
|
101
107
|
if (shouldDisableDevLogs) disableDevLogs();
|
|
102
108
|
};
|
|
103
109
|
|
package/dist/index.old.cjs
CHANGED
|
@@ -99,7 +99,13 @@ const installSerwist = ({ precacheEntries, precacheOptions, cleanupOutdatedCache
|
|
|
99
99
|
}
|
|
100
100
|
});
|
|
101
101
|
if (runtimeCaching !== undefined) registerRuntimeCaching(...runtimeCaching);
|
|
102
|
-
if (offlineAnalyticsConfig !== undefined)
|
|
102
|
+
if (offlineAnalyticsConfig !== undefined) {
|
|
103
|
+
if (typeof offlineAnalyticsConfig === "boolean") {
|
|
104
|
+
offlineAnalyticsConfig && initialize.initialize();
|
|
105
|
+
} else {
|
|
106
|
+
initialize.initialize(offlineAnalyticsConfig);
|
|
107
|
+
}
|
|
108
|
+
}
|
|
103
109
|
if (shouldDisableDevLogs) disableDevLogs();
|
|
104
110
|
};
|
|
105
111
|
|
package/dist/nonNullable.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,19 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@serwist/sw",
|
|
3
|
-
"version": "8.0.
|
|
3
|
+
"version": "8.0.2",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
|
-
"author": "Google's Web DevRel Team, Serwist's Team",
|
|
7
6
|
"description": "This module makes it easy to get started with the Serwist service worker libraries.",
|
|
8
|
-
"
|
|
9
|
-
|
|
10
|
-
|
|
7
|
+
"files": [
|
|
8
|
+
"dist",
|
|
9
|
+
"!dist/**/dts"
|
|
10
|
+
],
|
|
11
11
|
"keywords": [
|
|
12
12
|
"serwist",
|
|
13
13
|
"serwistjs",
|
|
14
14
|
"service worker",
|
|
15
15
|
"sw"
|
|
16
16
|
],
|
|
17
|
+
"author": "Google's Web DevRel Team, Serwist's Team",
|
|
18
|
+
"repository": "serwist/serwist",
|
|
19
|
+
"bugs": "https://github.com/serwist/serwist/issues",
|
|
20
|
+
"homepage": "https://ducanh-next-pwa.vercel.app",
|
|
17
21
|
"module": "./dist/index.js",
|
|
18
22
|
"main": "./dist/index.old.cjs",
|
|
19
23
|
"types": "./dist/index.d.ts",
|
|
@@ -26,22 +30,22 @@
|
|
|
26
30
|
"./package.json": "./package.json"
|
|
27
31
|
},
|
|
28
32
|
"dependencies": {
|
|
29
|
-
"@serwist/background-sync": "8.0.
|
|
30
|
-
"@serwist/broadcast-update": "8.0.
|
|
31
|
-
"@serwist/cacheable-response": "8.0.
|
|
32
|
-
"@serwist/core": "8.0.
|
|
33
|
-
"@serwist/expiration": "8.0.
|
|
34
|
-
"@serwist/google-analytics": "8.0.
|
|
35
|
-
"@serwist/navigation-preload": "8.0.
|
|
36
|
-
"@serwist/precaching": "8.0.
|
|
37
|
-
"@serwist/range-requests": "8.0.
|
|
38
|
-
"@serwist/routing": "8.0.
|
|
39
|
-
"@serwist/strategies": "8.0.
|
|
33
|
+
"@serwist/background-sync": "8.0.2",
|
|
34
|
+
"@serwist/broadcast-update": "8.0.2",
|
|
35
|
+
"@serwist/cacheable-response": "8.0.2",
|
|
36
|
+
"@serwist/core": "8.0.2",
|
|
37
|
+
"@serwist/expiration": "8.0.2",
|
|
38
|
+
"@serwist/google-analytics": "8.0.2",
|
|
39
|
+
"@serwist/navigation-preload": "8.0.2",
|
|
40
|
+
"@serwist/precaching": "8.0.2",
|
|
41
|
+
"@serwist/range-requests": "8.0.2",
|
|
42
|
+
"@serwist/routing": "8.0.2",
|
|
43
|
+
"@serwist/strategies": "8.0.2"
|
|
40
44
|
},
|
|
41
45
|
"devDependencies": {
|
|
42
46
|
"rollup": "3.28.1",
|
|
43
|
-
"@serwist/build": "8.0.
|
|
44
|
-
"@serwist/constants": "8.0.
|
|
47
|
+
"@serwist/build": "8.0.2",
|
|
48
|
+
"@serwist/constants": "8.0.2"
|
|
45
49
|
},
|
|
46
50
|
"scripts": {
|
|
47
51
|
"build": "rimraf dist && cross-env NODE_ENV=production rollup --config rollup.config.js",
|
package/.turbo/turbo-build.log
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
> @serwist/sw@8.0.0 build /home/runner/work/serwist/serwist/packages/sw
|
|
3
|
-
> rimraf dist && cross-env NODE_ENV=production rollup --config rollup.config.js
|
|
4
|
-
|
|
5
|
-
(node:3208) ExperimentalWarning: Import assertions are not a stable feature of the JavaScript language. Avoid relying on their current behavior and syntax as those might change in a future version of Node.js.
|
|
6
|
-
(Use `node --trace-warnings ...` to show where the warning was created)
|
|
7
|
-
(node:3208) ExperimentalWarning: Importing JSON modules is an experimental feature and might change at any time
|
|
8
|
-
[36m
|
|
9
|
-
[1msrc/index.ts[22m → [1mdist/index.old.cjs, dist/index.js[22m...[39m
|
|
10
|
-
[32mcreated [1mdist/index.old.cjs, dist/index.js[22m in [1m2.1s[22m[39m
|
package/.turbo/turbo-lint.log
DELETED
package/CHANGELOG.md
DELETED
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
# @serwist/sw
|
|
2
|
-
|
|
3
|
-
## 8.0.0
|
|
4
|
-
|
|
5
|
-
### Major Changes
|
|
6
|
-
|
|
7
|
-
- [`e0313f0`](https://github.com/serwist/serwist/commit/e0313f02f661a07ccbe9edc64e44e1af6136c73e) Thanks [@DuCanhGH](https://github.com/DuCanhGH)! - chore: initial release
|
|
8
|
-
|
|
9
|
-
- Reimagined `@serwist/next`.
|
|
10
|
-
- Removed various options.
|
|
11
|
-
- Removed `aggressiveFrontEndNavCaching` to reassess its usefulness.
|
|
12
|
-
- Removed `browserslist`. Use `swcEnvTargets` instead (TODO: add this option).
|
|
13
|
-
- Custom workers have been removed. You should use `swSrc`.
|
|
14
|
-
- Removed `extendDefaultRuntimeCaching`. Use the spread syntax instead (use `import { defaultCache } from "@serwist/next/browser"` to import the default runtimeCaching array).
|
|
15
|
-
- Temporarily removed `fallbacks` to investigate module-friendly alternatives.
|
|
16
|
-
- Removed `swcMinify`.
|
|
17
|
-
- Removed `watchWorkersInDev`.
|
|
18
|
-
- Removed `cacheStartUrl`, `dynamicStartUrl`, and `dynamicStartUrl`. These shall be re-added only when their use cases are made more clear to me.
|
|
19
|
-
- Merged `workboxOptions` with the plugin's options.
|
|
20
|
-
- Removed `swc-loader`, `terser-minify`, `webpack-builders`,... (we now leverage `ChildCompilationPlugin` to compile workers - this change will be backported to `@ducanh2912/next-pwa@10`)
|
|
21
|
-
- Removed the ability to use GenerateSW. `@serwist/sw.installSerwist` is provided as a replacement.
|
|
22
|
-
- `swSrc` is now a required property.
|
|
23
|
-
- Moved minimum support Next.js version from `11.0.0` to `14.0.0`.
|
|
24
|
-
- Removed GenerateSW (replaced by `@serwist/sw.installSerwist`).
|
|
25
|
-
- See `examples/next-basic/app/sw.ts` to see how `installSerwist` should be used.
|
|
26
|
-
- Repurposed `@serwist/sw`.
|
|
27
|
-
- The old package might be reintroduced if there's demand.
|
|
28
|
-
- **Note:** This is just the initial release, and there is still a lot of ground to cover (a lot of legacy code to be removed, a lot of features to be reintroduced,...). Here's to a bright future for the project :\_)
|
|
29
|
-
|
|
30
|
-
### Patch Changes
|
|
31
|
-
|
|
32
|
-
- Updated dependencies [[`e0313f0`](https://github.com/serwist/serwist/commit/e0313f02f661a07ccbe9edc64e44e1af6136c73e)]:
|
|
33
|
-
- @serwist/cacheable-response@8.0.0
|
|
34
|
-
- @serwist/navigation-preload@8.0.0
|
|
35
|
-
- @serwist/broadcast-update@8.0.0
|
|
36
|
-
- @serwist/google-analytics@8.0.0
|
|
37
|
-
- @serwist/background-sync@8.0.0
|
|
38
|
-
- @serwist/range-requests@8.0.0
|
|
39
|
-
- @serwist/expiration@8.0.0
|
|
40
|
-
- @serwist/precaching@8.0.0
|
|
41
|
-
- @serwist/strategies@8.0.0
|
|
42
|
-
- @serwist/routing@8.0.0
|
|
43
|
-
- @serwist/core@8.0.0
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"disableDevLogs.d.ts","sourceRoot":"","sources":["../src/disableDevLogs.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,cAAc,YAE1B,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"handlePrecaching.d.ts","sourceRoot":"","sources":["../src/handlePrecaching.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,oBAAoB,EAAE,MAAM,qBAAqB,CAAC;AAI/E,MAAM,MAAM,uBAAuB,GAAG;IACpC,eAAe,CAAC,EAAE,CAAC,aAAa,GAAG,MAAM,CAAC,EAAE,CAAC;IAC7C,eAAe,CAAC,EAAE,oBAAoB,CAAC;IAEvC,qBAAqB,CAAC,EAAE,OAAO,CAAC;CACjC,GAAG,CAAC;IAAE,gBAAgB,EAAE,MAAM,CAAC;IAAC,yBAAyB,CAAC,EAAE,MAAM,EAAE,CAAC;IAAC,wBAAwB,CAAC,EAAE,MAAM,EAAE,CAAA;CAAE,GAAG;IAAE,gBAAgB,CAAC,EAAE,KAAK,CAAA;CAAE,CAAC,CAAC;AAE7I,eAAO,MAAM,gBAAgB,yGAK1B,uBAAuB,SAoBzB,CAAC"}
|
package/dist/index.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,gBAAgB,CAAC;AAErD,OAAO,EAAE,KAAK,gCAAgC,EAAc,MAAM,sCAAsC,CAAC;AAGzG,OAAO,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAC;AACrD,OAAO,EAAE,gBAAgB,EAAE,KAAK,uBAAuB,EAAE,MAAM,uBAAuB,CAAC;AACvF,OAAO,EAAE,sBAAsB,EAAE,MAAM,6BAA6B,CAAC;AAIrE,MAAM,MAAM,cAAc,GAAG,uBAAuB,GAAG;IACrD,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,aAAa,CAAC,EAAE,MAAM,EAAE,CAAC;IACzB,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAC5B,OAAO,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC7B,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,cAAc,CAAC,EAAE,cAAc,EAAE,CAAC;IAClC,sBAAsB,CAAC,EAAE,gCAAgC,CAAC;IAC1D,cAAc,CAAC,EAAE,OAAO,CAAC;CAC1B,CAAC;AAEF,eAAO,MAAM,cAAc,wRAcxB,cAAc,SAsChB,CAAC;AAEF,OAAO,EAAE,cAAc,EAAE,gBAAgB,EAAE,sBAAsB,EAAE,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"nonNullable.d.ts","sourceRoot":"","sources":["../src/nonNullable.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,WAAW,0CAAkF,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"registerRuntimeCaching.d.ts","sourceRoot":"","sources":["../src/registerRuntimeCaching.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,cAAc,EAAgB,MAAM,gBAAgB,CAAC;AAkBnE,eAAO,MAAM,sBAAsB,0BAA2B,cAAc,EAAE,SA4C7E,CAAC"}
|
package/rollup.config.js
DELETED
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
// @ts-check
|
|
2
|
-
import { getRollupOptions } from "@serwist/constants/rollup";
|
|
3
|
-
|
|
4
|
-
import packageJson from "./package.json" assert { type: "json" };
|
|
5
|
-
|
|
6
|
-
const isDev = process.env.NODE_ENV === "development";
|
|
7
|
-
|
|
8
|
-
export default getRollupOptions({
|
|
9
|
-
packageJson,
|
|
10
|
-
jsFiles: [
|
|
11
|
-
{
|
|
12
|
-
input: "src/index.ts",
|
|
13
|
-
output: [
|
|
14
|
-
{
|
|
15
|
-
file: "dist/index.old.cjs",
|
|
16
|
-
format: "cjs",
|
|
17
|
-
exports: "named",
|
|
18
|
-
},
|
|
19
|
-
{
|
|
20
|
-
file: "dist/index.js",
|
|
21
|
-
format: "esm",
|
|
22
|
-
},
|
|
23
|
-
],
|
|
24
|
-
},
|
|
25
|
-
],
|
|
26
|
-
shouldEmitDeclaration: !isDev,
|
|
27
|
-
});
|
package/src/disableDevLogs.ts
DELETED
package/src/handlePrecaching.ts
DELETED
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
import type { PrecacheEntry, PrecacheRouteOptions } from "@serwist/precaching";
|
|
2
|
-
import { cleanupOutdatedCaches, createHandlerBoundToURL, precacheAndRoute } from "@serwist/precaching";
|
|
3
|
-
import { NavigationRoute, registerRoute } from "@serwist/routing";
|
|
4
|
-
|
|
5
|
-
export type HandlePrecachingOptions = {
|
|
6
|
-
precacheEntries?: (PrecacheEntry | string)[];
|
|
7
|
-
precacheOptions?: PrecacheRouteOptions;
|
|
8
|
-
|
|
9
|
-
cleanupOutdatedCaches?: boolean;
|
|
10
|
-
} & ({ navigateFallback: string; navigateFallbackAllowlist?: RegExp[]; navigateFallbackDenylist?: RegExp[] } | { navigateFallback?: never });
|
|
11
|
-
|
|
12
|
-
export const handlePrecaching = ({
|
|
13
|
-
precacheEntries,
|
|
14
|
-
precacheOptions,
|
|
15
|
-
cleanupOutdatedCaches: shouldCleanupOutdatedCaches = false,
|
|
16
|
-
...options
|
|
17
|
-
}: HandlePrecachingOptions) => {
|
|
18
|
-
if (!!precacheEntries && precacheEntries.length > 0) {
|
|
19
|
-
/**
|
|
20
|
-
* The precacheAndRoute() method efficiently caches and responds to
|
|
21
|
-
* requests for URLs in the manifest.
|
|
22
|
-
* See https://goo.gl/S9QRab
|
|
23
|
-
*/
|
|
24
|
-
precacheAndRoute(precacheEntries, precacheOptions);
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
if (shouldCleanupOutdatedCaches) cleanupOutdatedCaches();
|
|
28
|
-
|
|
29
|
-
if (options.navigateFallback) {
|
|
30
|
-
registerRoute(
|
|
31
|
-
new NavigationRoute(createHandlerBoundToURL(options.navigateFallback), {
|
|
32
|
-
allowlist: options.navigateFallbackAllowlist,
|
|
33
|
-
denylist: options.navigateFallbackDenylist,
|
|
34
|
-
})
|
|
35
|
-
);
|
|
36
|
-
}
|
|
37
|
-
};
|
package/src/index.ts
DELETED
|
@@ -1,77 +0,0 @@
|
|
|
1
|
-
import type { RuntimeCaching } from "@serwist/build";
|
|
2
|
-
import { clientsClaim, setCacheNameDetails } from "@serwist/core";
|
|
3
|
-
import { type GoogleAnalyticsInitializeOptions, initialize } from "@serwist/google-analytics/initialize";
|
|
4
|
-
import { enable } from "@serwist/navigation-preload";
|
|
5
|
-
|
|
6
|
-
import { disableDevLogs } from "./disableDevLogs.js";
|
|
7
|
-
import { handlePrecaching, type HandlePrecachingOptions } from "./handlePrecaching.js";
|
|
8
|
-
import { registerRuntimeCaching } from "./registerRuntimeCaching.js";
|
|
9
|
-
|
|
10
|
-
declare const self: ServiceWorkerGlobalScope;
|
|
11
|
-
|
|
12
|
-
export type SerwistOptions = HandlePrecachingOptions & {
|
|
13
|
-
skipWaiting?: boolean;
|
|
14
|
-
importScripts?: string[];
|
|
15
|
-
navigationPreload?: boolean;
|
|
16
|
-
cacheId?: string | undefined;
|
|
17
|
-
clientsClaim?: boolean;
|
|
18
|
-
runtimeCaching?: RuntimeCaching[];
|
|
19
|
-
offlineAnalyticsConfig?: GoogleAnalyticsInitializeOptions;
|
|
20
|
-
disableDevLogs?: boolean;
|
|
21
|
-
};
|
|
22
|
-
|
|
23
|
-
export const installSerwist = ({
|
|
24
|
-
precacheEntries,
|
|
25
|
-
precacheOptions,
|
|
26
|
-
cleanupOutdatedCaches,
|
|
27
|
-
|
|
28
|
-
skipWaiting: shouldSkipWaiting = false,
|
|
29
|
-
importScripts: scriptsToImport,
|
|
30
|
-
navigationPreload = false,
|
|
31
|
-
cacheId,
|
|
32
|
-
clientsClaim: shouldClaimClients = false,
|
|
33
|
-
runtimeCaching,
|
|
34
|
-
offlineAnalyticsConfig,
|
|
35
|
-
disableDevLogs: shouldDisableDevLogs,
|
|
36
|
-
...options
|
|
37
|
-
}: SerwistOptions) => {
|
|
38
|
-
if (!!scriptsToImport && scriptsToImport.length > 0) self.importScripts(...scriptsToImport);
|
|
39
|
-
|
|
40
|
-
if (navigationPreload) enable();
|
|
41
|
-
|
|
42
|
-
if (cacheId !== undefined)
|
|
43
|
-
setCacheNameDetails({
|
|
44
|
-
prefix: cacheId,
|
|
45
|
-
});
|
|
46
|
-
|
|
47
|
-
if (shouldSkipWaiting) {
|
|
48
|
-
self.skipWaiting();
|
|
49
|
-
} else {
|
|
50
|
-
self.addEventListener("message", (event) => {
|
|
51
|
-
if (event.data && event.data.type === "SKIP_WAITING") {
|
|
52
|
-
self.skipWaiting();
|
|
53
|
-
}
|
|
54
|
-
});
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
if (shouldClaimClients) clientsClaim();
|
|
58
|
-
|
|
59
|
-
handlePrecaching({
|
|
60
|
-
precacheEntries,
|
|
61
|
-
precacheOptions,
|
|
62
|
-
cleanupOutdatedCaches,
|
|
63
|
-
...(options.navigateFallback && {
|
|
64
|
-
navigateFallback: options.navigateFallback,
|
|
65
|
-
navigateFallbackAllowlist: options.navigateFallbackAllowlist,
|
|
66
|
-
navigateFallbackDenylist: options.navigateFallbackDenylist,
|
|
67
|
-
}),
|
|
68
|
-
});
|
|
69
|
-
|
|
70
|
-
if (runtimeCaching !== undefined) registerRuntimeCaching(...runtimeCaching);
|
|
71
|
-
|
|
72
|
-
if (offlineAnalyticsConfig !== undefined) initialize(offlineAnalyticsConfig);
|
|
73
|
-
|
|
74
|
-
if (shouldDisableDevLogs) disableDevLogs();
|
|
75
|
-
};
|
|
76
|
-
|
|
77
|
-
export { disableDevLogs, handlePrecaching, registerRuntimeCaching };
|
package/src/nonNullable.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export const nonNullable = <T>(value: T): value is NonNullable<T> => value !== null && value !== undefined;
|
|
@@ -1,65 +0,0 @@
|
|
|
1
|
-
import { BackgroundSyncPlugin } from "@serwist/background-sync";
|
|
2
|
-
import { BroadcastUpdatePlugin } from "@serwist/broadcast-update";
|
|
3
|
-
import type { RuntimeCaching, StrategyName } from "@serwist/build";
|
|
4
|
-
import { CacheableResponsePlugin } from "@serwist/cacheable-response";
|
|
5
|
-
import { ExpirationPlugin } from "@serwist/expiration";
|
|
6
|
-
import { PrecacheFallbackPlugin } from "@serwist/precaching";
|
|
7
|
-
import { RangeRequestsPlugin } from "@serwist/range-requests";
|
|
8
|
-
import { registerRoute } from "@serwist/routing";
|
|
9
|
-
import { CacheFirst, CacheOnly, NetworkFirst, NetworkOnly, StaleWhileRevalidate } from "@serwist/strategies";
|
|
10
|
-
|
|
11
|
-
import { nonNullable } from "./nonNullable.js";
|
|
12
|
-
|
|
13
|
-
const HANDLER_NAME_TO_METHOD = {
|
|
14
|
-
CacheFirst,
|
|
15
|
-
CacheOnly,
|
|
16
|
-
NetworkFirst,
|
|
17
|
-
NetworkOnly,
|
|
18
|
-
StaleWhileRevalidate,
|
|
19
|
-
} satisfies Record<StrategyName, unknown>;
|
|
20
|
-
|
|
21
|
-
export const registerRuntimeCaching = (...runtimeCachingList: RuntimeCaching[]) => {
|
|
22
|
-
for (const rcEntry of runtimeCachingList) {
|
|
23
|
-
if (typeof rcEntry.handler === "string") {
|
|
24
|
-
const {
|
|
25
|
-
cacheName,
|
|
26
|
-
networkTimeoutSeconds,
|
|
27
|
-
fetchOptions,
|
|
28
|
-
matchOptions,
|
|
29
|
-
plugins,
|
|
30
|
-
backgroundSync,
|
|
31
|
-
broadcastUpdate,
|
|
32
|
-
cacheableResponse,
|
|
33
|
-
expiration,
|
|
34
|
-
precacheFallback,
|
|
35
|
-
rangeRequests,
|
|
36
|
-
} = rcEntry.options!; // entry.options is always defined when entry.handler is of type 'string'.
|
|
37
|
-
const Handler = HANDLER_NAME_TO_METHOD[rcEntry.handler];
|
|
38
|
-
registerRoute(
|
|
39
|
-
rcEntry.urlPattern,
|
|
40
|
-
new Handler({
|
|
41
|
-
cacheName: cacheName ?? undefined,
|
|
42
|
-
networkTimeoutSeconds,
|
|
43
|
-
fetchOptions,
|
|
44
|
-
matchOptions,
|
|
45
|
-
plugins: [
|
|
46
|
-
...(plugins ?? []),
|
|
47
|
-
backgroundSync && new BackgroundSyncPlugin(backgroundSync.name, backgroundSync.options),
|
|
48
|
-
broadcastUpdate &&
|
|
49
|
-
new BroadcastUpdatePlugin({
|
|
50
|
-
// @ts-expect-error weird...
|
|
51
|
-
channelName: broadcastUpdate.channelName,
|
|
52
|
-
...broadcastUpdate.options,
|
|
53
|
-
}),
|
|
54
|
-
cacheableResponse && new CacheableResponsePlugin(cacheableResponse),
|
|
55
|
-
expiration && new ExpirationPlugin(expiration),
|
|
56
|
-
precacheFallback && new PrecacheFallbackPlugin(precacheFallback),
|
|
57
|
-
rangeRequests ? new RangeRequestsPlugin() : undefined,
|
|
58
|
-
].filter(nonNullable),
|
|
59
|
-
})
|
|
60
|
-
);
|
|
61
|
-
} else {
|
|
62
|
-
registerRoute(rcEntry.urlPattern, rcEntry.handler, rcEntry.method);
|
|
63
|
-
}
|
|
64
|
-
}
|
|
65
|
-
};
|