@angular/pwa 18.1.0-next.0 → 18.1.0-next.1
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/index.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular/pwa",
|
|
3
|
-
"version": "18.1.0-next.
|
|
3
|
+
"version": "18.1.0-next.1",
|
|
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": "18.1.0-next.
|
|
21
|
-
"@schematics/angular": "18.1.0-next.
|
|
20
|
+
"@angular-devkit/schematics": "18.1.0-next.1",
|
|
21
|
+
"@schematics/angular": "18.1.0-next.1",
|
|
22
22
|
"parse5-html-rewriting-stream": "7.0.0"
|
|
23
23
|
},
|
|
24
24
|
"peerDependencies": {
|
package/pwa/index.js
CHANGED
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
* found in the LICENSE file at https://angular.io/license
|
|
8
8
|
*/
|
|
9
9
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10
|
+
exports.default = default_1;
|
|
10
11
|
const schematics_1 = require("@angular-devkit/schematics");
|
|
11
12
|
const utility_1 = require("@schematics/angular/utility");
|
|
12
13
|
const path_1 = require("path");
|
|
@@ -125,7 +126,6 @@ function default_1(options) {
|
|
|
125
126
|
]);
|
|
126
127
|
};
|
|
127
128
|
}
|
|
128
|
-
exports.default = default_1;
|
|
129
129
|
/**
|
|
130
130
|
* This uses a dynamic import to load a module which may be ESM.
|
|
131
131
|
* CommonJS code can load ESM code via a dynamic import. Unfortunately, TypeScript
|