@rxap/ts-morph 1.4.3-dev.3 → 1.4.3
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 +8 -0
- package/README.md +11 -2
- package/package.json +3 -3
- package/src/index.d.ts +2 -2
- package/src/index.js +3 -3
- package/src/index.js.map +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
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
|
+
## [1.4.3](https://gitlab.com/rxap/packages/compare/@rxap/ts-morph@1.4.3-dev.4...@rxap/ts-morph@1.4.3) (2024-07-30)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @rxap/ts-morph
|
|
9
|
+
|
|
10
|
+
## [1.4.3-dev.4](https://gitlab.com/rxap/packages/compare/@rxap/ts-morph@1.4.3-dev.3...@rxap/ts-morph@1.4.3-dev.4) (2024-07-30)
|
|
11
|
+
|
|
12
|
+
**Note:** Version bump only for package @rxap/ts-morph
|
|
13
|
+
|
|
6
14
|
## [1.4.3-dev.3](https://gitlab.com/rxap/packages/compare/@rxap/ts-morph@1.4.3-dev.2...@rxap/ts-morph@1.4.3-dev.3) (2024-07-09)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @rxap/ts-morph
|
package/README.md
CHANGED
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|

|
|
9
9
|
|
|
10
10
|
- [Installation](#installation)
|
|
11
|
+
- [Generators](#generators)
|
|
11
12
|
|
|
12
13
|
# Installation
|
|
13
14
|
|
|
@@ -15,7 +16,15 @@
|
|
|
15
16
|
```bash
|
|
16
17
|
yarn add @rxap/ts-morph
|
|
17
18
|
```
|
|
18
|
-
**
|
|
19
|
+
**Execute the init generator:**
|
|
19
20
|
```bash
|
|
20
|
-
yarn
|
|
21
|
+
yarn nx g @rxap/ts-morph:init
|
|
22
|
+
```
|
|
23
|
+
# Generators
|
|
24
|
+
|
|
25
|
+
## init
|
|
26
|
+
> Initialize the package in the workspace
|
|
27
|
+
|
|
28
|
+
```bash
|
|
29
|
+
yarn nx g @rxap/ts-morph:init
|
|
21
30
|
```
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.4.3
|
|
2
|
+
"version": "1.4.3",
|
|
3
3
|
"name": "@rxap/ts-morph",
|
|
4
4
|
"license": "GPL-3.0-or-later",
|
|
5
5
|
"dependencies": {
|
|
6
6
|
"@nx/devkit": "19.4.2",
|
|
7
|
-
"@rxap/utilities": "^16.3.0
|
|
7
|
+
"@rxap/utilities": "^16.3.0",
|
|
8
8
|
"colors": "1.4.0",
|
|
9
9
|
"ts-morph": "18.0.0",
|
|
10
10
|
"tslib": "2.6.2"
|
|
@@ -36,6 +36,6 @@
|
|
|
36
36
|
"directory": "packages/ts-morph"
|
|
37
37
|
},
|
|
38
38
|
"type": "commonjs",
|
|
39
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "dc81d957aa2a2bd4232af34f2e0550dd52643f40",
|
|
40
40
|
"main": "./src/index.js"
|
|
41
41
|
}
|
package/src/index.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
export * from './lib/nest/coerce-health-endpoint';
|
|
2
|
-
export * from './lib/nest/coerce-health-indicator';
|
|
3
1
|
export * from './lib/nest/add-to-global-health-endpoint';
|
|
4
2
|
export * from './lib/nest/coerce-app-guard-provider';
|
|
5
3
|
export * from './lib/nest/coerce-dto-class';
|
|
6
4
|
export * from './lib/nest/coerce-health-controller';
|
|
5
|
+
export * from './lib/nest/coerce-health-endpoint';
|
|
6
|
+
export * from './lib/nest/coerce-health-indicator';
|
|
7
7
|
export * from './lib/nest/coerce-health-module';
|
|
8
8
|
export * from './lib/nest/coerce-nest-app-config';
|
|
9
9
|
export * from './lib/nest/coerce-nest-app-controller';
|
package/src/index.js
CHANGED
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const tslib_1 = require("tslib");
|
|
4
4
|
// region nest
|
|
5
|
-
tslib_1.__exportStar(require("./lib/nest/coerce-health-endpoint"), exports);
|
|
6
|
-
tslib_1.__exportStar(require("./lib/nest/coerce-health-indicator"), exports);
|
|
7
5
|
tslib_1.__exportStar(require("./lib/nest/add-to-global-health-endpoint"), exports);
|
|
8
6
|
tslib_1.__exportStar(require("./lib/nest/coerce-app-guard-provider"), exports);
|
|
9
7
|
tslib_1.__exportStar(require("./lib/nest/coerce-dto-class"), exports);
|
|
10
8
|
tslib_1.__exportStar(require("./lib/nest/coerce-health-controller"), exports);
|
|
9
|
+
tslib_1.__exportStar(require("./lib/nest/coerce-health-endpoint"), exports);
|
|
10
|
+
tslib_1.__exportStar(require("./lib/nest/coerce-health-indicator"), exports);
|
|
11
11
|
tslib_1.__exportStar(require("./lib/nest/coerce-health-module"), exports);
|
|
12
12
|
tslib_1.__exportStar(require("./lib/nest/coerce-nest-app-config"), exports);
|
|
13
13
|
tslib_1.__exportStar(require("./lib/nest/coerce-nest-app-controller"), exports);
|
|
@@ -58,7 +58,7 @@ tslib_1.__exportStar(require("./lib/angular/get-component-decorator-object"), ex
|
|
|
58
58
|
tslib_1.__exportStar(require("./lib/angular/remove-component-import"), exports);
|
|
59
59
|
tslib_1.__exportStar(require("./lib/angular/remove-route"), exports);
|
|
60
60
|
// endregion
|
|
61
|
-
// region
|
|
61
|
+
// region
|
|
62
62
|
tslib_1.__exportStar(require("./lib/add-provider-to-array"), exports);
|
|
63
63
|
tslib_1.__exportStar(require("./lib/coerce-accessor-declaration"), exports);
|
|
64
64
|
tslib_1.__exportStar(require("./lib/coerce-array-element"), exports);
|
package/src/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../packages/ts-morph/src/index.ts"],"names":[],"mappings":";;;AAAA,cAAc;AACd,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../packages/ts-morph/src/index.ts"],"names":[],"mappings":";;;AAAA,cAAc;AACd,mFAAyD;AACzD,+EAAqD;AACrD,sEAA4C;AAC5C,8EAAoD;AACpD,4EAAkD;AAClD,6EAAmD;AACnD,0EAAgD;AAChD,4EAAkD;AAClD,gFAAsD;AACtD,4EAAkD;AAClD,qFAA2D;AAC3D,sFAA4D;AAC5D,4EAAkD;AAClD,sFAA4D;AAC5D,mFAAyD;AACzD,+EAAqD;AACrD,iFAAuD;AACvD,wEAA8C;AAC9C,2EAAiD;AACjD,mFAAyD;AACzD,yFAA+D;AAC/D,wEAA8C;AAC9C,kFAAwD;AACxD,0EAAgD;AAChD,8EAAoD;AACpD,2EAAiD;AACjD,4EAAkD;AAClD,0EAAgD;AAChD,0EAAgD;AAChD,4EAAkD;AAClD,+EAAqD;AACrD,iFAAuD;AACvD,mFAAyD;AACzD,YAAY;AAEZ,iBAAiB;AACjB,kEAAwC;AACxC,2EAAiD;AACjD,mFAAyD;AACzD,8EAAoD;AACpD,0EAAgD;AAChD,gFAAsD;AACtD,+EAAqD;AACrD,yEAA+C;AAC/C,iFAAuD;AACvD,6EAAmD;AACnD,+EAAqD;AACrD,2EAAiD;AACjD,sEAA4C;AAC5C,uEAA6C;AAC7C,4EAAkD;AAClD,0EAAgD;AAChD,4EAAkD;AAClD,uFAA6D;AAC7D,gFAAsD;AACtD,qEAA2C;AAC3C,YAAY;AAEZ,UAAU;AACV,sEAA4C;AAC5C,4EAAkD;AAClD,qEAA2C;AAC3C,yEAA+C;AAC/C,oEAA0C;AAC1C,sEAA4C;AAC5C,6DAAmC;AACnC,iEAAuC;AACvC,4EAAkD;AAClD,sEAA4C;AAC5C,4EAAkD;AAClD,+DAAqC;AACrC,4EAAkD;AAClD,2EAAiD;AACjD,4EAAkD;AAClD,mEAAyC;AACzC,kEAAwC;AACxC,4EAAkD;AAClD,+DAAqC;AACrC,8DAAoC;AACpC,8DAAoC;AACpC,8EAAoD;AACpD,0DAAgC;AAChC,6FAAmE;AACnE,0EAAgD;AAChD,2DAAiC;AACjC,kEAAwC;AACxC,gEAAsC;AACtC,kEAAwC;AACxC,4DAAkC;AAClC,iEAAuC;AACvC,2DAAiC;AACjC,YAAY"}
|