textbrowser 0.48.1 → 0.49.0
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/CHANGES.md +9 -0
- package/dist/sw-helper.js +2 -1
- package/package.json +2 -2
package/CHANGES.md
CHANGED
package/dist/sw-helper.js
CHANGED
|
@@ -41,7 +41,7 @@ function swHelper (self) {
|
|
|
41
41
|
'node_modules/textbrowser-data-schemas/schemas/table.jsonschema', // Not currently using for validation or meta-data
|
|
42
42
|
*/
|
|
43
43
|
|
|
44
|
-
'node_modules/intl-locale-textinfo-polyfill/lib/
|
|
44
|
+
'node_modules/intl-locale-textinfo-polyfill/lib/Locale.js',
|
|
45
45
|
'node_modules/textbrowser/dist/assets/languages-1sAACTKG.json',
|
|
46
46
|
'node_modules/textbrowser/dist/assets/index-_11XnUty.css',
|
|
47
47
|
|
|
@@ -282,6 +282,7 @@ function swHelper (self) {
|
|
|
282
282
|
console.log('sw stylesheets', stylesheets);
|
|
283
283
|
|
|
284
284
|
self.addEventListener('install', (e) => {
|
|
285
|
+
self.skipWaiting();
|
|
285
286
|
e.waitUntil(tryAndRetry(install, 5 * minutes, 'Error installing'));
|
|
286
287
|
});
|
|
287
288
|
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "textbrowser",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.49.0",
|
|
4
4
|
"description": "Multilinear text browser",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index-es.min.js",
|
|
7
|
-
"exports": "dist/index-es.min.js",
|
|
7
|
+
"exports": "./dist/index-es.min.js",
|
|
8
8
|
"module": "resources/index.js",
|
|
9
9
|
"bin": {
|
|
10
10
|
"textbrowser": "./server/main.js"
|