@o3r/mobile 10.0.0-prerelease.4 → 10.0.0-prerelease.41
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": "@o3r/mobile",
|
|
3
|
-
"version": "10.0.0-prerelease.
|
|
3
|
+
"version": "10.0.0-prerelease.41",
|
|
4
4
|
"description": "This package contains tooling useful for mobile applications.",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"bin": {
|
|
@@ -39,11 +39,11 @@
|
|
|
39
39
|
"@capacitor/core": "^5.0.0",
|
|
40
40
|
"@capacitor/device": "^5.0.0",
|
|
41
41
|
"@capacitor/preferences": "^5.0.0",
|
|
42
|
-
"@ngrx/store": "~17.
|
|
43
|
-
"@o3r/core": "^10.0.0-prerelease.
|
|
44
|
-
"@o3r/logger": "^10.0.0-prerelease.
|
|
45
|
-
"@o3r/schematics": "^10.0.0-prerelease.
|
|
46
|
-
"@o3r/store-sync": "^10.0.0-prerelease.
|
|
42
|
+
"@ngrx/store": "~17.1.0",
|
|
43
|
+
"@o3r/core": "^10.0.0-prerelease.41",
|
|
44
|
+
"@o3r/logger": "^10.0.0-prerelease.41",
|
|
45
|
+
"@o3r/schematics": "^10.0.0-prerelease.41",
|
|
46
|
+
"@o3r/store-sync": "^10.0.0-prerelease.41",
|
|
47
47
|
"@schematics/angular": "~17.0.0",
|
|
48
48
|
"fast-deep-equal": "^3.1.3",
|
|
49
49
|
"rxjs": "^7.8.1"
|
|
@@ -4,5 +4,5 @@ import type { NgAddSchematicsSchema } from './schema';
|
|
|
4
4
|
* Add Otter mobile to an Angular Project
|
|
5
5
|
* @param options ng add options
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const ngAdd: (options: NgAddSchematicsSchema) => Rule;
|
|
8
8
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../schematics/ng-add/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAS,IAAI,EAA0B,MAAM,4BAA4B,CAAC;AAGjF,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,UAAU,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../schematics/ng-add/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAS,IAAI,EAA0B,MAAM,4BAA4B,CAAC;AAGjF,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,UAAU,CAAC;AAqCtD;;;GAGG;AACH,eAAO,MAAM,KAAK,0CAAiD,CAAC"}
|
|
@@ -8,7 +8,7 @@ const path = require("node:path");
|
|
|
8
8
|
* Add Otter mobile to an Angular Project
|
|
9
9
|
* @param options ng add options
|
|
10
10
|
*/
|
|
11
|
-
function
|
|
11
|
+
function ngAddFn(options) {
|
|
12
12
|
/* ng add rules */
|
|
13
13
|
return async (tree, context) => {
|
|
14
14
|
try {
|
|
@@ -38,5 +38,9 @@ function ngAdd(options) {
|
|
|
38
38
|
}
|
|
39
39
|
};
|
|
40
40
|
}
|
|
41
|
-
|
|
41
|
+
/**
|
|
42
|
+
* Add Otter mobile to an Angular Project
|
|
43
|
+
* @param options ng add options
|
|
44
|
+
*/
|
|
45
|
+
exports.ngAdd = (0, schematics_2.createSchematicWithMetricsIfInstalled)(ngAddFn);
|
|
42
46
|
//# sourceMappingURL=index.js.map
|