@rxap/plugin-library 19.4.0-dev.2 → 19.4.0-dev.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 +4 -0
- package/README.md +28 -4
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,10 @@
|
|
|
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.4.0-dev.3](https://gitlab.com/rxap/packages/compare/@rxap/plugin-library@19.4.0-dev.2...@rxap/plugin-library@19.4.0-dev.3) (2024-07-30)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @rxap/plugin-library
|
|
9
|
+
|
|
6
10
|
# [19.4.0-dev.2](https://gitlab.com/rxap/packages/compare/@rxap/plugin-library@19.4.0-dev.1...@rxap/plugin-library@19.4.0-dev.2) (2024-07-26)
|
|
7
11
|
|
|
8
12
|
### Features
|
package/README.md
CHANGED
|
@@ -17,10 +17,6 @@
|
|
|
17
17
|
```bash
|
|
18
18
|
yarn add @rxap/plugin-library
|
|
19
19
|
```
|
|
20
|
-
**Install peer dependencies:**
|
|
21
|
-
```bash
|
|
22
|
-
yarn add @nx/devkit@^19.1.1 @nx/plugin@^19.1.1 @rxap/generator-ts-morph@^1.0.7 @rxap/node-utilities@^1.2.2 @rxap/plugin-utilities@^19.0.2-dev.1 @rxap/ts-morph@^1.3.0-dev.2 @rxap/utilities@^16.2.2 @rxap/workspace-utilities@^19.1.0-dev.1 nx@^19.1.1 ts-morph@^18.0.0
|
|
23
|
-
```
|
|
24
20
|
**Execute the init generator:**
|
|
25
21
|
```bash
|
|
26
22
|
yarn nx g @rxap/plugin-library:init
|
|
@@ -104,6 +100,20 @@ yarn nx g @rxap/plugin-library:init-with-migrations
|
|
|
104
100
|
yarn nx g @rxap/plugin-library:add-migration
|
|
105
101
|
```
|
|
106
102
|
|
|
103
|
+
## init-preset
|
|
104
|
+
> init-preset generator
|
|
105
|
+
|
|
106
|
+
```bash
|
|
107
|
+
yarn nx g @rxap/plugin-library:init-preset
|
|
108
|
+
```
|
|
109
|
+
|
|
110
|
+
## init-schematic
|
|
111
|
+
> init-schematic generator
|
|
112
|
+
|
|
113
|
+
```bash
|
|
114
|
+
yarn nx g @rxap/plugin-library:init-schematic
|
|
115
|
+
```
|
|
116
|
+
|
|
107
117
|
## init
|
|
108
118
|
> Create and update configurations to use rxap package publish concept
|
|
109
119
|
|
|
@@ -180,6 +190,20 @@ yarn nx g @rxap/plugin-library:init-with-migrations
|
|
|
180
190
|
```bash
|
|
181
191
|
yarn nx g @rxap/plugin-library:add-migration
|
|
182
192
|
```
|
|
193
|
+
|
|
194
|
+
## init-preset
|
|
195
|
+
> init-preset generator
|
|
196
|
+
|
|
197
|
+
```bash
|
|
198
|
+
yarn nx g @rxap/plugin-library:init-preset
|
|
199
|
+
```
|
|
200
|
+
|
|
201
|
+
## init-schematic
|
|
202
|
+
> init-schematic generator
|
|
203
|
+
|
|
204
|
+
```bash
|
|
205
|
+
yarn nx g @rxap/plugin-library:init-schematic
|
|
206
|
+
```
|
|
183
207
|
# Executors
|
|
184
208
|
|
|
185
209
|
## update-dependencies
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "19.4.0-dev.
|
|
2
|
+
"version": "19.4.0-dev.3",
|
|
3
3
|
"name": "@rxap/plugin-library",
|
|
4
4
|
"license": "GPL-3.0-or-later",
|
|
5
5
|
"dependencies": {
|
|
@@ -7,10 +7,10 @@
|
|
|
7
7
|
"@nx/devkit": "19.4.2",
|
|
8
8
|
"@nx/plugin": "19.4.2",
|
|
9
9
|
"@rxap/node-utilities": "^1.3.3-dev.0",
|
|
10
|
-
"@rxap/plugin-utilities": "^19.0.6-dev.
|
|
11
|
-
"@rxap/ts-morph": "^1.4.3-dev.
|
|
10
|
+
"@rxap/plugin-utilities": "^19.0.6-dev.8",
|
|
11
|
+
"@rxap/ts-morph": "^1.4.3-dev.4",
|
|
12
12
|
"@rxap/utilities": "^16.3.0-dev.2",
|
|
13
|
-
"@rxap/workspace-ts-morph": "^19.1.3-dev.
|
|
13
|
+
"@rxap/workspace-ts-morph": "^19.1.3-dev.8",
|
|
14
14
|
"@rxap/workspace-utilities": "^19.4.0-dev.6",
|
|
15
15
|
"colors": "1.4.0",
|
|
16
16
|
"handlebars": "4.7.8",
|
|
@@ -48,6 +48,6 @@
|
|
|
48
48
|
},
|
|
49
49
|
"schematics": "./generators.json",
|
|
50
50
|
"type": "commonjs",
|
|
51
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "2fa112bca0576f297e701eb1ff3f3f58651de1aa",
|
|
52
52
|
"main": "./src/index.js"
|
|
53
53
|
}
|