@rxap/ts-morph 1.5.3 → 1.5.4-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,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.5.4-dev.1](https://gitlab.com/rxap/packages/compare/@rxap/ts-morph@1.5.4-dev.0...@rxap/ts-morph@1.5.4-dev.1) (2025-02-23)
7
+
8
+ **Note:** Version bump only for package @rxap/ts-morph
9
+
10
+ ## [1.5.4-dev.0](https://gitlab.com/rxap/packages/compare/@rxap/ts-morph@1.5.3...@rxap/ts-morph@1.5.4-dev.0) (2025-02-18)
11
+
12
+ **Note:** Version bump only for package @rxap/ts-morph
13
+
6
14
  ## [1.5.3](https://gitlab.com/rxap/packages/compare/@rxap/ts-morph@1.5.3-dev.6...@rxap/ts-morph@1.5.3) (2025-02-13)
7
15
 
8
16
  **Note:** Version bump only for package @rxap/ts-morph
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # @rxap/ts-morph
1
+ Provides utilities for manipulating TypeScript code using the ts-morph library. It offers a fluent API to add, modify, and remove code elements such as classes, decorators, imports, and properties in both Angular and NestJS projects. This package simplifies common code generation and refactoring tasks.
2
2
 
3
3
  [![npm version](https://img.shields.io/npm/v/@rxap/ts-morph?style=flat-square)](https://www.npmjs.com/package/@rxap/ts-morph)
4
4
  [![commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=flat-square)](https://commitizen.github.io/cz-cli/)
@@ -9,6 +9,7 @@
9
9
 
10
10
  - [Installation](#installation)
11
11
  - [Generators](#generators)
12
+ - [init](#init)
12
13
 
13
14
  # Installation
14
15
 
@@ -26,5 +27,5 @@ yarn nx g @rxap/ts-morph:init
26
27
  > Initialize the package in the workspace
27
28
 
28
29
  ```bash
29
- yarn nx g @rxap/ts-morph:init
30
+ nx g @rxap/ts-morph:init
30
31
  ```
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
- "version": "1.5.3",
2
+ "version": "1.5.4-dev.1",
3
3
  "name": "@rxap/ts-morph",
4
4
  "description": "Provides utilities for manipulating TypeScript code using the ts-morph library. It offers a fluent API to add, modify, and remove code elements such as classes, decorators, imports, and properties in both Angular and NestJS projects. This package simplifies common code generation and refactoring tasks.\n",
5
5
  "license": "GPL-3.0-or-later",
6
6
  "dependencies": {
7
- "@nx/devkit": "20.4.2",
8
- "@rxap/utilities": "^16.4.2",
7
+ "@nx/devkit": "20.4.6",
8
+ "@rxap/utilities": "^16.4.3-dev.1",
9
9
  "colors": "^1.4.0",
10
10
  "ts-morph": "^18.0.0",
11
11
  "tslib": "2.6.2"
@@ -44,7 +44,7 @@
44
44
  },
45
45
  "schematics": "./generators.json",
46
46
  "type": "commonjs",
47
- "gitHead": "753c877fe1a5c2fcfa737310f6e99fd1371f9b4d",
47
+ "gitHead": "505a9f353394d70acb3be23c156f43cb944d2ab5",
48
48
  "types": "./src/index.d.ts",
49
49
  "main": "./src/index.js"
50
50
  }