@rxap/schematics-ts-morph 16.0.0-dev.35 → 16.0.0-dev.36

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/CHANGELOG.md CHANGED
@@ -3,6 +3,12 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [16.0.0-dev.36](https://gitlab.com/rxap/packages/compare/@rxap/schematics-ts-morph@16.0.0-dev.35...@rxap/schematics-ts-morph@16.0.0-dev.36) (2023-11-19)
7
+
8
+ ### Bug Fixes
9
+
10
+ - use Object.freeze instead of Object.seal ([630008f](https://gitlab.com/rxap/packages/commit/630008fe0eed3ec9f4670cfe6ba8e25cc8b3e42f))
11
+
6
12
  # [16.0.0-dev.35](https://gitlab.com/rxap/packages/compare/@rxap/schematics-ts-morph@16.0.0-dev.34...@rxap/schematics-ts-morph@16.0.0-dev.35) (2023-11-18)
7
13
 
8
14
  ### Bug Fixes
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "16.0.0-dev.35",
2
+ "version": "16.0.0-dev.36",
3
3
  "name": "@rxap/schematics-ts-morph",
4
4
  "license": "GPL-3.0-or-later",
5
5
  "dependencies": {
@@ -13,7 +13,7 @@
13
13
  "@angular-devkit/core": "^16.1.4",
14
14
  "@angular-devkit/schematics": "^16.1.4",
15
15
  "@rxap/schematics-utilities": "^16.0.0-dev.21",
16
- "@rxap/ts-morph": "^0.1.0-dev.19",
16
+ "@rxap/ts-morph": "^0.1.0-dev.20",
17
17
  "@rxap/utilities": "^16.0.0-dev.23",
18
18
  "@rxap/workspace-ts-morph": "^0.1.0-dev.12",
19
19
  "ts-morph": "^18.0.0",
@@ -45,7 +45,7 @@
45
45
  },
46
46
  {
47
47
  "package": "@rxap/ts-morph",
48
- "version": "0.1.0-dev.19"
48
+ "version": "0.1.0-dev.20"
49
49
  },
50
50
  {
51
51
  "package": "@rxap/utilities",
@@ -67,7 +67,6 @@
67
67
  "directory": "packages/schematic/ts-morph"
68
68
  },
69
69
  "type": "commonjs",
70
- "gitHead": "eae9d8105fc9ecfdf80101d147d1947b99d68fb8",
71
70
  "main": "./src/index.js",
72
71
  "types": "./src/index.d.ts"
73
72
  }
@@ -2,7 +2,7 @@ import { ClassDeclaration, SourceFile } from 'ts-morph';
2
2
  import { TsMorphAngularProjectTransformOptions } from '../ts-morph-transform';
3
3
  import { FormDefinitionControl } from '../types/form-definition-control';
4
4
  export interface CoerceFormDefinitionTypeOptions extends TsMorphAngularProjectTransformOptions {
5
- controlList?: Array<Required<FormDefinitionControl>>;
5
+ controlList?: ReadonlyArray<Required<FormDefinitionControl>>;
6
6
  name: string;
7
7
  coerceFormType?: (sourceFile: SourceFile, classDeclaration: ClassDeclaration, formTypeName: string, options: CoerceFormDefinitionTypeOptions) => void;
8
8
  }
@@ -3,7 +3,7 @@ import { ClassDeclaration, SourceFile } from 'ts-morph';
3
3
  import { TsMorphAngularProjectTransformOptions } from '../ts-morph-transform';
4
4
  import { FormDefinitionControl } from '../types/form-definition-control';
5
5
  export interface CoerceFormDefinitionOptions extends TsMorphAngularProjectTransformOptions {
6
- controlList?: Array<Required<FormDefinitionControl>>;
6
+ controlList?: ReadonlyArray<Required<FormDefinitionControl>>;
7
7
  name: string;
8
8
  tsMorphTransform?: (sourceFile: SourceFile, classDeclaration: ClassDeclaration) => void;
9
9
  coerceFormType?: (sourceFile: SourceFile, classDeclaration: ClassDeclaration, formTypeName: string, options: CoerceFormDefinitionOptions) => void;