@angular/pwa 19.1.2 → 19.1.4
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 +3 -3
- package/pwa/schema.d.ts +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular/pwa",
|
|
3
|
-
"version": "19.1.
|
|
3
|
+
"version": "19.1.4",
|
|
4
4
|
"description": "PWA schematics for Angular",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Angular CLI",
|
|
@@ -17,8 +17,8 @@
|
|
|
17
17
|
"save": false
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@angular-devkit/schematics": "19.1.
|
|
21
|
-
"@schematics/angular": "19.1.
|
|
20
|
+
"@angular-devkit/schematics": "19.1.4",
|
|
21
|
+
"@schematics/angular": "19.1.4",
|
|
22
22
|
"parse5-html-rewriting-stream": "7.0.0"
|
|
23
23
|
},
|
|
24
24
|
"peerDependencies": {
|
package/pwa/schema.d.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* access it offline. This schematic configures your project for PWA functionality, adding a
|
|
5
5
|
* service worker, a web app manifest, and other necessary features.
|
|
6
6
|
*/
|
|
7
|
-
export
|
|
7
|
+
export type Schema = {
|
|
8
8
|
/**
|
|
9
9
|
* The name of the project to transform into a PWA. If not specified, the CLI will determine
|
|
10
10
|
* the project from the current directory.
|
|
@@ -21,4 +21,4 @@ export interface Schema {
|
|
|
21
21
|
*/
|
|
22
22
|
title?: string;
|
|
23
23
|
[property: string]: any;
|
|
24
|
-
}
|
|
24
|
+
};
|