dealposbarcode 1.3.7 → 1.3.9
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/barcode/3rdpartylicenses.txt +425 -0
- package/barcode/660.b1c2f3358551568d.js +1 -0
- package/barcode/index.html +23 -24
- package/barcode/main.71e908371e60089d.js +1 -0
- package/barcode/ngsw-worker.js +1845 -0
- package/barcode/ngsw.json +161 -0
- package/barcode/polyfills.dc4857163ebc6915.js +1 -0
- package/barcode/runtime.42ebd4cddf8ccc51.js +1 -0
- package/barcode/safety-worker.js +26 -0
- package/barcode/styles.076e6cb26a99c3ea.css +20 -0
- package/barcode/worker-basic.min.js +26 -0
- package/package.json +3 -3
- package/barcode/main.js +0 -1426
- package/barcode/main.js.map +0 -1
- package/barcode/polyfills.js +0 -3398
- package/barcode/polyfills.js.map +0 -1
- package/barcode/runtime.js +0 -304
- package/barcode/runtime.js.map +0 -1
- package/barcode/src_app_pages_pages_module_ts.js +0 -9694
- package/barcode/src_app_pages_pages_module_ts.js.map +0 -1
- package/barcode/styles.css +0 -15970
- package/barcode/styles.css.map +0 -1
- package/barcode/vendor.js +0 -114554
- package/barcode/vendor.js.map +0 -1
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright Google LLC All Rights Reserved.
|
|
4
|
+
*
|
|
5
|
+
* Use of this source code is governed by an MIT-style license that can be
|
|
6
|
+
* found in the LICENSE file at https://angular.io/license
|
|
7
|
+
*/
|
|
8
|
+
|
|
9
|
+
// tslint:disable:no-console
|
|
10
|
+
|
|
11
|
+
self.addEventListener('install', event => {
|
|
12
|
+
self.skipWaiting();
|
|
13
|
+
});
|
|
14
|
+
|
|
15
|
+
self.addEventListener('activate', event => {
|
|
16
|
+
event.waitUntil(self.clients.claim());
|
|
17
|
+
|
|
18
|
+
event.waitUntil(self.registration.unregister().then(() => {
|
|
19
|
+
console.log('NGSW Safety Worker - unregistered old service worker');
|
|
20
|
+
}));
|
|
21
|
+
|
|
22
|
+
event.waitUntil(caches.keys().then(cacheNames => {
|
|
23
|
+
const ngswCacheNames = cacheNames.filter(name => /^ngsw:/.test(name));
|
|
24
|
+
return Promise.all(ngswCacheNames.map(name => caches.delete(name)));
|
|
25
|
+
}));
|
|
26
|
+
});
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dealposbarcode",
|
|
3
|
-
"version": "1.3.
|
|
4
|
-
"description": "",
|
|
3
|
+
"version": "1.3.9",
|
|
5
4
|
"main": "index.js",
|
|
6
5
|
"scripts": {
|
|
7
6
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
8
7
|
},
|
|
9
8
|
"author": "",
|
|
10
|
-
"license": "ISC"
|
|
9
|
+
"license": "ISC",
|
|
10
|
+
"description": ""
|
|
11
11
|
}
|