@serwist/sw 8.4.0 → 8.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/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +15 -15
package/dist/index.d.cts
CHANGED
|
@@ -3,7 +3,7 @@ import { type GoogleAnalyticsInitializeOptions } from "@serwist/google-analytics
|
|
|
3
3
|
import { disableDevLogs } from "./disableDevLogs.js";
|
|
4
4
|
import type { FallbackEntry, FallbackMatcher, FallbacksOptions } from "./fallbacks.js";
|
|
5
5
|
import { fallbacks } from "./fallbacks.js";
|
|
6
|
-
import {
|
|
6
|
+
import { type HandlePrecachingOptions, handlePrecaching } from "./handlePrecaching.js";
|
|
7
7
|
import { registerRuntimeCaching } from "./registerRuntimeCaching.js";
|
|
8
8
|
export type SerwistOptions = HandlePrecachingOptions & {
|
|
9
9
|
skipWaiting?: boolean;
|
package/dist/index.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import { type GoogleAnalyticsInitializeOptions } from "@serwist/google-analytics
|
|
|
3
3
|
import { disableDevLogs } from "./disableDevLogs.js";
|
|
4
4
|
import type { FallbackEntry, FallbackMatcher, FallbacksOptions } from "./fallbacks.js";
|
|
5
5
|
import { fallbacks } from "./fallbacks.js";
|
|
6
|
-
import {
|
|
6
|
+
import { type HandlePrecachingOptions, handlePrecaching } from "./handlePrecaching.js";
|
|
7
7
|
import { registerRuntimeCaching } from "./registerRuntimeCaching.js";
|
|
8
8
|
export type SerwistOptions = HandlePrecachingOptions & {
|
|
9
9
|
skipWaiting?: boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@serwist/sw",
|
|
3
|
-
"version": "8.4.
|
|
3
|
+
"version": "8.4.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "This module makes it easy to get started with the Serwist service worker libraries.",
|
|
6
6
|
"files": [
|
|
@@ -35,27 +35,27 @@
|
|
|
35
35
|
"./package.json": "./package.json"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@serwist/background-sync": "8.4.
|
|
39
|
-
"@serwist/broadcast-update": "8.4.
|
|
40
|
-
"@serwist/cacheable-response": "8.4.
|
|
41
|
-
"@serwist/core": "8.4.
|
|
42
|
-
"@serwist/expiration": "8.4.
|
|
43
|
-
"@serwist/google-analytics": "8.4.
|
|
44
|
-
"@serwist/navigation-preload": "8.4.
|
|
45
|
-
"@serwist/precaching": "8.4.
|
|
46
|
-
"@serwist/range-requests": "8.4.
|
|
47
|
-
"@serwist/routing": "8.4.
|
|
48
|
-
"@serwist/strategies": "8.4.
|
|
38
|
+
"@serwist/background-sync": "8.4.2",
|
|
39
|
+
"@serwist/broadcast-update": "8.4.2",
|
|
40
|
+
"@serwist/cacheable-response": "8.4.2",
|
|
41
|
+
"@serwist/core": "8.4.2",
|
|
42
|
+
"@serwist/expiration": "8.4.2",
|
|
43
|
+
"@serwist/google-analytics": "8.4.2",
|
|
44
|
+
"@serwist/navigation-preload": "8.4.2",
|
|
45
|
+
"@serwist/precaching": "8.4.2",
|
|
46
|
+
"@serwist/range-requests": "8.4.2",
|
|
47
|
+
"@serwist/routing": "8.4.2",
|
|
48
|
+
"@serwist/strategies": "8.4.2"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
51
|
"rollup": "4.9.1",
|
|
52
|
-
"@serwist/build": "8.4.
|
|
53
|
-
"@serwist/constants": "8.4.
|
|
52
|
+
"@serwist/build": "8.4.2",
|
|
53
|
+
"@serwist/constants": "8.4.2"
|
|
54
54
|
},
|
|
55
55
|
"scripts": {
|
|
56
56
|
"build": "rimraf dist && cross-env NODE_ENV=production rollup --config rollup.config.js",
|
|
57
57
|
"dev": "rollup --config rollup.config.js --watch",
|
|
58
|
-
"lint": "
|
|
58
|
+
"lint": "biome lint ./src",
|
|
59
59
|
"typecheck": "tsc"
|
|
60
60
|
}
|
|
61
61
|
}
|