pagewave 1.0.1 → 1.0.3
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/package.json +1 -1
- package/sw.js +3 -3
- package/transition.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pagewave",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "NPM Package for implementing page transitions in both SSR and CSR apps. Utilize both custom and preset animations. Choose between transitions, keyframe animations, and overlays.",
|
|
5
5
|
"main": "transition.js",
|
|
6
6
|
"scripts": {
|
package/sw.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
const CACHE_NAME = "Page Transition SW";
|
|
2
2
|
let pageCache = [
|
|
3
|
-
"transition.js",
|
|
4
|
-
"OverlayPreset.css",
|
|
5
|
-
"KeyFramePreset.css",
|
|
3
|
+
"./transition.js",
|
|
4
|
+
"./OverlayPreset.css",
|
|
5
|
+
"./KeyFramePreset.css",
|
|
6
6
|
];
|
|
7
7
|
self.addEventListener("fetch", (e) => {
|
|
8
8
|
e.respondWith(
|