@tramvai/module-progressive-web-app 5.53.80 → 6.62.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/README.md +2 -2
- package/lib/tokens.d.ts +1 -4
- package/package.json +11 -7
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Progressiwe Web App module.
|
|
4
4
|
|
|
5
|
-
Complete documentation is available in [PWA page](03-features/
|
|
5
|
+
Complete documentation is available in [PWA page](03-features/018-pwa.md).
|
|
6
6
|
|
|
7
7
|
## Installation
|
|
8
8
|
|
|
@@ -22,4 +22,4 @@ createApp({
|
|
|
22
22
|
name: 'tincoin',
|
|
23
23
|
modules: [TramvaiPwaModule],
|
|
24
24
|
});
|
|
25
|
-
```
|
|
25
|
+
```
|
package/lib/tokens.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { Workbox } from 'workbox-window';
|
|
2
|
-
import type { PwaMetaOptions } from '@tramvai/
|
|
2
|
+
import type { PwaMetaOptions } from '@tramvai/plugin-webpack-pwa';
|
|
3
3
|
export type WebManifest = {
|
|
4
4
|
[key: string]: any;
|
|
5
5
|
};
|
|
@@ -31,9 +31,6 @@ export declare const PWA_MANIFEST_SCOPE_TOKEN: (string & {
|
|
|
31
31
|
* @description Token to add query params to sw url
|
|
32
32
|
*/
|
|
33
33
|
export declare const PWA_SW_PARAMS_TOKEN: Record<string, string> & {
|
|
34
|
-
/**
|
|
35
|
-
* @description Token to add query params to sw url
|
|
36
|
-
*/
|
|
37
34
|
__type?: "multi token" | undefined;
|
|
38
35
|
};
|
|
39
36
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tramvai/module-progressive-web-app",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "6.62.0",
|
|
4
4
|
"description": "Pwa integration - SW, manifest, icons and meta",
|
|
5
5
|
"browser": "lib/browser.js",
|
|
6
6
|
"main": "lib/server.js",
|
|
@@ -23,15 +23,19 @@
|
|
|
23
23
|
"registry": "https://registry.npmjs.org/"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@tramvai/tokens-common": "
|
|
27
|
-
"@tramvai/tokens-render": "
|
|
28
|
-
"@tramvai/tokens-server": "
|
|
26
|
+
"@tramvai/tokens-common": "6.62.0",
|
|
27
|
+
"@tramvai/tokens-render": "6.62.0",
|
|
28
|
+
"@tramvai/tokens-server": "6.62.0",
|
|
29
29
|
"workbox-window": "^6.6.1"
|
|
30
30
|
},
|
|
31
|
+
"devDependencies": {
|
|
32
|
+
"@tramvai/plugin-webpack-pwa": "6.62.0"
|
|
33
|
+
},
|
|
31
34
|
"peerDependencies": {
|
|
32
|
-
"@tinkoff/dippy": "0.
|
|
33
|
-
"@tramvai/cli": "
|
|
34
|
-
"@tramvai/core": "
|
|
35
|
+
"@tinkoff/dippy": "0.12.3",
|
|
36
|
+
"@tramvai/cli": "6.62.0",
|
|
37
|
+
"@tramvai/core": "6.62.0",
|
|
38
|
+
"@tramvai/plugin-webpack-pwa": "6.62.0",
|
|
35
39
|
"tslib": "^2.4.0"
|
|
36
40
|
}
|
|
37
41
|
}
|