@rxap/plugin-open-api 19.1.4-dev.14 → 19.1.4-dev.15

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,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.1.4-dev.15](https://gitlab.com/rxap/packages/compare/@rxap/plugin-open-api@19.1.4-dev.14...@rxap/plugin-open-api@19.1.4-dev.15) (2024-07-30)
7
+
8
+ **Note:** Version bump only for package @rxap/plugin-open-api
9
+
6
10
  ## [19.1.4-dev.14](https://gitlab.com/rxap/packages/compare/@rxap/plugin-open-api@19.1.4-dev.13...@rxap/plugin-open-api@19.1.4-dev.14) (2024-07-26)
7
11
 
8
12
  **Note:** Version bump only for package @rxap/plugin-open-api
package/README.md CHANGED
@@ -17,9 +17,9 @@
17
17
  ```bash
18
18
  yarn add @rxap/plugin-open-api
19
19
  ```
20
- **Install peer dependencies:**
20
+ **Execute the init generator:**
21
21
  ```bash
22
- yarn add @nx/devkit@^19.1.1 @rxap/node-utilities@^1.2.2 @rxap/plugin-library@^19.0.1 @rxap/plugin-utilities@^19.0.1 @rxap/utilities@^16.2.2 @rxap/workspace-open-api@^19.0.1 @rxap/workspace-ts-morph@^19.0.1 @rxap/workspace-utilities@^19.0.1
22
+ yarn nx g @rxap/plugin-open-api:init
23
23
  ```
24
24
  # Generators
25
25
 
@@ -37,6 +37,13 @@ yarn nx g @rxap/plugin-open-api:generate
37
37
  yarn nx g @rxap/plugin-open-api:init-library
38
38
  ```
39
39
 
40
+ ## init
41
+ > Initialize the package in the workspace
42
+
43
+ ```bash
44
+ yarn nx g @rxap/plugin-open-api:init
45
+ ```
46
+
40
47
  ## generate
41
48
  > generate generator
42
49
 
@@ -50,6 +57,13 @@ yarn nx g @rxap/plugin-open-api:generate
50
57
  ```bash
51
58
  yarn nx g @rxap/plugin-open-api:init-library
52
59
  ```
60
+
61
+ ## init
62
+ > Initialize the package in the workspace
63
+
64
+ ```bash
65
+ yarn nx g @rxap/plugin-open-api:init
66
+ ```
53
67
  # Executors
54
68
 
55
69
  ## copy-client-sdk
package/generators.json CHANGED
@@ -26,6 +26,11 @@
26
26
  "factory": "./src/generators/init-library/index",
27
27
  "schema": "./src/generators/init-library/schema.json",
28
28
  "description": "init-library generator"
29
+ },
30
+ "init": {
31
+ "factory": "./src/generators/init/index",
32
+ "schema": "./src/generators/init/schema.json",
33
+ "description": "Initialize the package in the workspace"
29
34
  }
30
35
  }
31
36
  }
package/package.json CHANGED
@@ -1,15 +1,15 @@
1
1
  {
2
- "version": "19.1.4-dev.14",
2
+ "version": "19.1.4-dev.15",
3
3
  "name": "@rxap/plugin-open-api",
4
4
  "license": "GPL-3.0-or-later",
5
5
  "dependencies": {
6
6
  "@nx/devkit": "19.4.2",
7
7
  "@rxap/node-utilities": "^1.3.3-dev.0",
8
- "@rxap/plugin-library": "^19.4.0-dev.2",
9
- "@rxap/plugin-utilities": "^19.0.6-dev.7",
8
+ "@rxap/plugin-library": "^19.4.0-dev.3",
9
+ "@rxap/plugin-utilities": "^19.0.6-dev.8",
10
10
  "@rxap/utilities": "^16.3.0-dev.2",
11
11
  "@rxap/workspace-open-api": "^19.0.5-dev.7",
12
- "@rxap/workspace-ts-morph": "^19.1.3-dev.7",
12
+ "@rxap/workspace-ts-morph": "^19.1.3-dev.8",
13
13
  "@rxap/workspace-utilities": "^19.4.0-dev.6",
14
14
  "tslib": "2.6.2",
15
15
  "yaml": "2.3.1"
@@ -44,6 +44,6 @@
44
44
  },
45
45
  "schematics": "./generators.json",
46
46
  "type": "commonjs",
47
- "gitHead": "a4b44fee9881c042165c770065259b26cdcf6967",
47
+ "gitHead": "2fa112bca0576f297e701eb1ff3f3f58651de1aa",
48
48
  "main": "./src/index.js"
49
49
  }
@@ -0,0 +1,2 @@
1
+ declare const schematic: (generatorOptions: import("./schema").InitGeneratorSchema) => (tree: any, context: any) => Promise<any>;
2
+ export default schematic;
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const devkit_1 = require("@nx/devkit");
4
+ const generator_1 = require("./generator");
5
+ const schematic = (0, devkit_1.convertNxGenerator)(generator_1.default);
6
+ exports.default = schematic;
7
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../../packages/plugin/open-api/src/generators/init/index.ts"],"names":[],"mappings":";;AAAA,uCAAgD;AAChD,2CAAoC;AAEpC,MAAM,SAAS,GAAG,IAAA,2BAAkB,EAAC,mBAAS,CAAC,CAAC;AAChD,kBAAe,SAAS,CAAC"}