@webqit/webflo 0.11.12 → 0.11.13

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.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1438,7 +1438,7 @@ Webflo client-side applications are intended to provide an app-like-first experi
1438
1438
  + **Cache First** - This strategy tells the Service Worker to always attempt fetching from the cache first for given resources, before fetching from the network. After serving a cached response, or where not found in cache, a network fetch happens and a copy of the response is saved to the cache for next time. (This is good for resources that do not critially need to be fresh to the user.) When not the default strategy, a list of specific URLs that should be fetched this way can be configured.
1439
1439
 
1440
1440
  <details>
1441
- <summary>Config (Alternative)</summary>
1441
+ <summary>Config (Other)</summary>
1442
1442
 
1443
1443
  ```json
1444
1444
  { "default_fetching_strategy": "cache-first" }
@@ -1456,7 +1456,7 @@ Webflo client-side applications are intended to provide an app-like-first experi
1456
1456
  + **Network Only** - This strategy tells the Service Worker to always fetch given resources from the network only. They are simply not available when offline. (This is good for resources that critially need to be fresh to the user.) When not the default strategy, a list of specific URLs that should be fetched this way can be configured.
1457
1457
 
1458
1458
  <details>
1459
- <summary>Config (Alternative)</summary>
1459
+ <summary>Config (Other)</summary>
1460
1460
 
1461
1461
  ```json
1462
1462
  { "default_fetching_strategy": "network-only" }
@@ -1474,7 +1474,7 @@ Webflo client-side applications are intended to provide an app-like-first experi
1474
1474
  + **Cache Only** - This strategy tells the Service Worker to always fetch given resources from the cache only. (This is good for resources that do not change often.) When not the default strategy, a list of specific URLs that should be fetched this way can be configured. The listed resources are pre-cached ahead of when they'll be needed - and are served from the cache each time. (Pre-caching happens on the one-time `install` event of the Service Worker.)
1475
1475
 
1476
1476
  <details>
1477
- <summary>Config (Alternative)</summary>
1477
+ <summary>Config (Other)</summary>
1478
1478
 
1479
1479
  ```json
1480
1480
  { "default_fetching_strategy": "cache-only" }
package/package.json CHANGED
@@ -12,7 +12,7 @@
12
12
  "vanila-javascript"
13
13
  ],
14
14
  "homepage": "https://webqit.io/tooling/webflo",
15
- "version": "0.11.12",
15
+ "version": "0.11.13",
16
16
  "license": "MIT",
17
17
  "repository": {
18
18
  "type": "git",