@o3r/core 12.0.0-rc.9 → 12.0.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 +4 -4
- package/schematics/ng-add/utils/linter/index.d.ts +1 -1
- package/schematics/ng-add/utils/linter/index.d.ts.map +1 -1
- package/schematics/ng-add/utils/linter/index.js +1 -1
- package/schematics/service/schema.json +1 -2
- package/schematics/store/entity-async/schema.json +1 -2
- package/schematics/store/entity-sync/schema.json +1 -2
- package/schematics/store/schema.json +1 -2
- package/schematics/store/simple-async/schema.json +1 -2
- package/schematics/store/simple-sync/schema.json +1 -2
- package/schematics/store-action/schema.json +1 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@o3r/core",
|
|
3
|
-
"version": "12.0.
|
|
3
|
+
"version": "12.0.1",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"@ngrx/entity": "^19.0.0",
|
|
26
26
|
"@ngrx/store": "^19.0.0",
|
|
27
27
|
"@nx/angular": "~20.2.0",
|
|
28
|
-
"@o3r/telemetry": "^12.0.
|
|
28
|
+
"@o3r/telemetry": "^12.0.1",
|
|
29
29
|
"@schematics/angular": "^19.0.0",
|
|
30
30
|
"chokidar": "^4.0.3",
|
|
31
31
|
"globby": "^11.1.0",
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
}
|
|
65
65
|
},
|
|
66
66
|
"dependencies": {
|
|
67
|
-
"@o3r/schematics": "^12.0.
|
|
67
|
+
"@o3r/schematics": "^12.0.1",
|
|
68
68
|
"tslib": "^2.6.2",
|
|
69
69
|
"uuid": "^11.0.5"
|
|
70
70
|
},
|
|
@@ -77,7 +77,7 @@
|
|
|
77
77
|
"@ngrx/store": "~19.0.0",
|
|
78
78
|
"@ngrx/store-devtools": "~19.0.0",
|
|
79
79
|
"@nx/eslint-plugin": "~20.2.0",
|
|
80
|
-
"@o3r/store-sync": "^12.0.
|
|
80
|
+
"@o3r/store-sync": "^12.0.1",
|
|
81
81
|
"@stylistic/eslint-plugin": "~3.0.0",
|
|
82
82
|
"@types/jest": "~29.5.2",
|
|
83
83
|
"@typescript-eslint/eslint-plugin": "~8.23.0",
|
|
@@ -3,7 +3,7 @@ import { SchematicContext, type Tree } from '@angular-devkit/schematics';
|
|
|
3
3
|
* If the ESLint FlatConfig is used in the repository
|
|
4
4
|
* @param tree
|
|
5
5
|
*/
|
|
6
|
-
export declare const isUsingFlatConfig: (tree: Tree) =>
|
|
6
|
+
export declare const isUsingFlatConfig: (tree: Tree) => boolean;
|
|
7
7
|
/**
|
|
8
8
|
* Checks if `eslint` package is installed. If so, ask the user for otter linter rules install.
|
|
9
9
|
* Otherwise displays a message to inform the user that otter linter rules can be added later.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../schematics/ng-add/utils/linter/index.ts"],"names":[],"mappings":"AAGA,OAAO,EACL,gBAAgB,EAChB,KAAK,IAAI,EACV,MAAM,4BAA4B,CAAC;AAEpC;;;GAGG;AACH,eAAO,MAAM,iBAAiB,SAAU,IAAI,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../schematics/ng-add/utils/linter/index.ts"],"names":[],"mappings":"AAGA,OAAO,EACL,gBAAgB,EAChB,KAAK,IAAI,EACV,MAAM,4BAA4B,CAAC;AAEpC;;;GAGG;AACH,eAAO,MAAM,iBAAiB,SAAU,IAAI,YAAgF,CAAC;AAE7H;;;;;GAKG;AACH,eAAO,MAAM,4BAA4B,YAAmB,gBAAgB,QAAQ,IAAI,KAAG,OAAO,CAAC,OAAO,CAezG,CAAC"}
|
|
@@ -6,7 +6,7 @@ const prompt_1 = require("@angular/cli/src/utilities/prompt");
|
|
|
6
6
|
* If the ESLint FlatConfig is used in the repository
|
|
7
7
|
* @param tree
|
|
8
8
|
*/
|
|
9
|
-
const isUsingFlatConfig = (tree) => tree.root.subfiles.
|
|
9
|
+
const isUsingFlatConfig = (tree) => tree.root.subfiles.some((file) => /eslint\.config\.[mc]?[jt]s$/.test(file));
|
|
10
10
|
exports.isUsingFlatConfig = isUsingFlatConfig;
|
|
11
11
|
/**
|
|
12
12
|
* Checks if `eslint` package is installed. If so, ask the user for otter linter rules install.
|