@o3r/schematics 12.0.0-next.2 → 12.0.0-next.4

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@o3r/schematics",
3
- "version": "12.0.0-next.2",
3
+ "version": "12.0.0-next.4",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -30,10 +30,11 @@
30
30
  "@angular-devkit/core": "^18.2.0",
31
31
  "@angular-devkit/schematics": "^18.2.0",
32
32
  "@angular/cli": "^18.2.0",
33
- "@o3r/telemetry": "^12.0.0-next.2",
33
+ "@o3r/telemetry": "^12.0.0-next.4",
34
34
  "@schematics/angular": "^18.2.0",
35
35
  "eslint": "^9.14.0",
36
36
  "rxjs": "^7.8.1",
37
+ "ts-node": "~10.9.2",
37
38
  "type-fest": "^4.10.2",
38
39
  "typescript": "^5.5.4"
39
40
  },
@@ -88,9 +89,9 @@
88
89
  "@nx/eslint-plugin": "~19.8.0",
89
90
  "@nx/jest": "~19.8.0",
90
91
  "@nx/js": "~19.8.0",
91
- "@o3r/build-helpers": "^12.0.0-next.2",
92
- "@o3r/eslint-plugin": "^12.0.0-next.2",
93
- "@o3r/telemetry": "^12.0.0-next.2",
92
+ "@o3r/build-helpers": "^12.0.0-next.4",
93
+ "@o3r/eslint-plugin": "^12.0.0-next.4",
94
+ "@o3r/telemetry": "^12.0.0-next.4",
94
95
  "@schematics/angular": "~18.2.0",
95
96
  "@stylistic/eslint-plugin": "~2.7.0",
96
97
  "@swc/helpers": "~0.5.0",
@@ -88,7 +88,7 @@ export declare const addInterfaceToClassTransformerFactory: (interfaceToAdd: str
88
88
  /**
89
89
  * Add comment on class properties
90
90
  * @param classElements
91
- * @param comments Dictionnary of comment indexed by properties' name
91
+ * @param comments Dictionary of comment indexed by properties' name
92
92
  */
93
93
  export declare const addCommentsOnClassProperties: (classElements: ts.ClassElement[], comments: Record<string, string>) => void;
94
94
  /**
@@ -211,7 +211,7 @@ exports.addInterfaceToClassTransformerFactory = addInterfaceToClassTransformerFa
211
211
  /**
212
212
  * Add comment on class properties
213
213
  * @param classElements
214
- * @param comments Dictionnary of comment indexed by properties' name
214
+ * @param comments Dictionary of comment indexed by properties' name
215
215
  */
216
216
  const addCommentsOnClassProperties = (classElements, comments) => {
217
217
  classElements.filter((classElement) => ts.isPropertyDeclaration(classElement)