@angular/pwa 19.1.0-rc.0 → 19.1.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular/pwa",
3
- "version": "19.1.0-rc.0",
3
+ "version": "19.1.0",
4
4
  "description": "PWA schematics for Angular",
5
5
  "keywords": [
6
6
  "Angular CLI",
@@ -17,12 +17,12 @@
17
17
  "save": false
18
18
  },
19
19
  "dependencies": {
20
- "@angular-devkit/schematics": "19.1.0-rc.0",
21
- "@schematics/angular": "19.1.0-rc.0",
20
+ "@angular-devkit/schematics": "19.1.0",
21
+ "@schematics/angular": "19.1.0",
22
22
  "parse5-html-rewriting-stream": "7.0.0"
23
23
  },
24
24
  "peerDependencies": {
25
- "@angular/cli": "^19.0.0 || ^19.1.0-next.0"
25
+ "@angular/cli": "^19.0.0"
26
26
  },
27
27
  "peerDependenciesMeta": {
28
28
  "@angular/cli": {
package/pwa/schema.d.ts CHANGED
@@ -1,14 +1,23 @@
1
+ /**
2
+ * Transforms your Angular application into a Progressive Web App (PWA). PWAs provide a
3
+ * native app-like experience, allowing users to install your app on their devices and
4
+ * access it offline. This schematic configures your project for PWA functionality, adding a
5
+ * service worker, a web app manifest, and other necessary features.
6
+ */
1
7
  export interface Schema {
2
8
  /**
3
- * The name of the project.
9
+ * The name of the project to transform into a PWA. If not specified, the CLI will determine
10
+ * the project from the current directory.
4
11
  */
5
12
  project?: string;
6
13
  /**
7
- * The target to apply service worker to.
14
+ * The build target to apply the service worker to. This is typically `build`, indicating
15
+ * that the service worker should be generated during the standard build process.
8
16
  */
9
17
  target?: string;
10
18
  /**
11
- * The title of the application.
19
+ * The title of the application. This will be used in the web app manifest, which is a JSON
20
+ * file that provides metadata about your PWA (e.g., name, icons, display options).
12
21
  */
13
22
  title?: string;
14
23
  [property: string]: any;
package/pwa/schema.json CHANGED
@@ -3,22 +3,23 @@
3
3
  "$id": "SchematicsAngularPWA",
4
4
  "title": "Angular PWA Options Schema",
5
5
  "type": "object",
6
+ "description": "Transforms your Angular application into a Progressive Web App (PWA). PWAs provide a native app-like experience, allowing users to install your app on their devices and access it offline. This schematic configures your project for PWA functionality, adding a service worker, a web app manifest, and other necessary features.",
6
7
  "properties": {
7
8
  "project": {
8
9
  "type": "string",
9
- "description": "The name of the project.",
10
+ "description": "The name of the project to transform into a PWA. If not specified, the CLI will determine the project from the current directory.",
10
11
  "$default": {
11
12
  "$source": "projectName"
12
13
  }
13
14
  },
14
15
  "target": {
15
16
  "type": "string",
16
- "description": "The target to apply service worker to.",
17
+ "description": "The build target to apply the service worker to. This is typically `build`, indicating that the service worker should be generated during the standard build process.",
17
18
  "default": "build"
18
19
  },
19
20
  "title": {
20
21
  "type": "string",
21
- "description": "The title of the application."
22
+ "description": "The title of the application. This will be used in the web app manifest, which is a JSON file that provides metadata about your PWA (e.g., name, icons, display options)."
22
23
  }
23
24
  },
24
25
  "required": []