@rxap/schematics-ts-morph 19.0.4-dev.2 → 19.1.0-dev.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/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,20 @@
|
|
|
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
|
+
# [19.1.0-dev.1](https://gitlab.com/rxap/packages/compare/@rxap/schematics-ts-morph@19.1.0-dev.0...@rxap/schematics-ts-morph@19.1.0-dev.1) (2025-04-02)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @rxap/schematics-ts-morph
|
|
9
|
+
|
|
10
|
+
# [19.1.0-dev.0](https://gitlab.com/rxap/packages/compare/@rxap/schematics-ts-morph@19.0.4-dev.2...@rxap/schematics-ts-morph@19.1.0-dev.0) (2025-03-26)
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
- **nest:** handle null serverId in operation ID generation ([1ccd7a3](https://gitlab.com/rxap/packages/commit/1ccd7a390b2cb52174840ce55637125bf0feeeb6))
|
|
15
|
+
|
|
16
|
+
### Features
|
|
17
|
+
|
|
18
|
+
- replace buildNestProjectName with buildOperationServerId ([15817bf](https://gitlab.com/rxap/packages/commit/15817bff61b9c37fcb8dbb3bc718c27db0591fcb))
|
|
19
|
+
|
|
6
20
|
## [19.0.4-dev.2](https://gitlab.com/rxap/packages/compare/@rxap/schematics-ts-morph@19.0.4-dev.1...@rxap/schematics-ts-morph@19.0.4-dev.2) (2025-03-26)
|
|
7
21
|
|
|
8
22
|
### Bug Fixes
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "19.0
|
|
2
|
+
"version": "19.1.0-dev.1",
|
|
3
3
|
"name": "@rxap/schematics-ts-morph",
|
|
4
4
|
"description": "This package provides utilities for manipulating TypeScript code using ts-morph, particularly for Angular and NestJS projects. It offers functions to add, coerce, and modify code elements like classes, methods, decorators, and imports. The package also includes specialized functions for working with Angular components, NestJS modules, and form definitions.\n",
|
|
5
5
|
"license": "GPL-3.0-or-later",
|
|
@@ -7,11 +7,11 @@
|
|
|
7
7
|
"@angular-devkit/core": "19.2.1",
|
|
8
8
|
"@angular-devkit/schematics": "19.2.1",
|
|
9
9
|
"@nx/devkit": "20.5.0",
|
|
10
|
-
"@rxap/schematics-utilities": "^19.0.4-dev.
|
|
10
|
+
"@rxap/schematics-utilities": "^19.0.4-dev.3",
|
|
11
11
|
"@rxap/ts-morph": "^1.5.5-dev.0",
|
|
12
12
|
"@rxap/utilities": "^16.4.4-dev.0",
|
|
13
|
-
"@rxap/workspace-ts-morph": "^19.1.12-dev.
|
|
14
|
-
"@rxap/workspace-utilities": "^19.8.0-dev.
|
|
13
|
+
"@rxap/workspace-ts-morph": "^19.1.12-dev.3",
|
|
14
|
+
"@rxap/workspace-utilities": "^19.8.0-dev.3",
|
|
15
15
|
"colors": "^1.4.0",
|
|
16
16
|
"handlebars": "^4.7.8",
|
|
17
17
|
"ts-morph": "^18.0.0",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
},
|
|
47
47
|
"schematics": "./generators.json",
|
|
48
48
|
"type": "commonjs",
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "b32f110144dafee760d535d217a2855e77f154a5",
|
|
50
50
|
"types": "./src/index.d.ts",
|
|
51
51
|
"main": "./src/index.js"
|
|
52
52
|
}
|
|
@@ -4,6 +4,6 @@ exports.buildOperationId = buildOperationId;
|
|
|
4
4
|
const schematics_utilities_1 = require("@rxap/schematics-utilities");
|
|
5
5
|
const workspace_utilities_1 = require("@rxap/workspace-utilities");
|
|
6
6
|
function buildOperationId(options, operation, controller) {
|
|
7
|
-
return `${(0, schematics_utilities_1.dasherize)(controller)}-controller-${(0, schematics_utilities_1.dasherize)(operation)}@${(0, workspace_utilities_1.
|
|
7
|
+
return `${(0, schematics_utilities_1.dasherize)(controller)}-controller-${(0, schematics_utilities_1.dasherize)(operation)}@${(0, workspace_utilities_1.buildOperationServerId)(options)}`;
|
|
8
8
|
}
|
|
9
9
|
//# sourceMappingURL=operation-id-utilities.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"operation-id-utilities.js","sourceRoot":"","sources":["../../../../../../../packages/schematic/ts-morph/src/lib/nest/operation-id-utilities.ts"],"names":[],"mappings":";;AAGA,4CAOC;AAVD,qEAAuD;AACvD,
|
|
1
|
+
{"version":3,"file":"operation-id-utilities.js","sourceRoot":"","sources":["../../../../../../../packages/schematic/ts-morph/src/lib/nest/operation-id-utilities.ts"],"names":[],"mappings":";;AAGA,4CAOC;AAVD,qEAAuD;AACvD,mEAAmE;AAEnE,SAAgB,gBAAgB,CAAC,OAKhC,EAAE,SAAiB,EAAE,UAAkB;IACtC,OAAO,GAAI,IAAA,gCAAS,EAAC,UAAU,CAAE,eAAgB,IAAA,gCAAS,EAAC,SAAS,CAAE,IAAK,IAAA,4CAAsB,EAAC,OAAO,CAAE,EAAE,CAAC;AAChH,CAAC"}
|