@rxap/plugin-library 16.0.0 → 16.1.0-dev.0

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,23 @@
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
+ # [16.1.0-dev.0](https://gitlab.com/rxap/packages/compare/@rxap/plugin-library@16.0.1-dev.0...@rxap/plugin-library@16.1.0-dev.0) (2024-02-25)
7
+
8
+ ### Bug Fixes
9
+
10
+ - add nested definition cleanup ([f9c5637](https://gitlab.com/rxap/packages/commit/f9c5637fdba8ba458443c923c584564761e077ca))
11
+ - cleanup bundled schema ([4af344f](https://gitlab.com/rxap/packages/commit/4af344fa89837f228f04f96166f5b21932b50018))
12
+
13
+ ### Features
14
+
15
+ - add bundle-json-schema generator ([8c4b9d9](https://gitlab.com/rxap/packages/commit/8c4b9d93730290c9b40ecf20490e87de34e6b1d2))
16
+
17
+ ## [16.0.1-dev.0](https://gitlab.com/rxap/packages/compare/@rxap/plugin-library@16.0.0...@rxap/plugin-library@16.0.1-dev.0) (2024-02-09)
18
+
19
+ ### Bug Fixes
20
+
21
+ - remove FlexLayout dependency ([1fea895](https://gitlab.com/rxap/packages/commit/1fea895ea326d64e3ca230386175d1cd71d25ace))
22
+
6
23
  # [16.0.0](https://gitlab.com/rxap/packages/compare/@rxap/plugin-library@16.0.0-dev.43...@rxap/plugin-library@16.0.0) (2024-02-07)
7
24
 
8
25
  **Note:** Version bump only for package @rxap/plugin-library
package/README.md CHANGED
@@ -19,7 +19,7 @@ yarn add @rxap/plugin-library
19
19
  ```
20
20
  **Install peer dependencies:**
21
21
  ```bash
22
- yarn add @nx/devkit@^16.5.0 @rxap/generator-ts-morph@^1.0.1-dev.13 @rxap/generator-utilities@^1.1.0-dev.19 @rxap/node-utilities@^1.1.0-dev.15 @rxap/plugin-angular@^16.1.0-dev.65 @rxap/plugin-nestjs@^16.1.0-dev.48 @rxap/plugin-utilities@^16.1.0-dev.22 @rxap/ts-morph@^0.1.0-dev.21 @rxap/utilities@^16.0.0-dev.23 @rxap/workspace-utilities@^0.1.0-dev.27 handlebars@^4.7.7 nx@^16.5.0 semver@^7.5.3 ts-morph@^18.0.0 tslib@2.6.2
22
+ yarn add @nx/devkit@^16.5.0 @rxap/generator-ts-morph@^1.0.1 @rxap/generator-utilities@^1.1.0 @rxap/node-utilities@^1.1.0 @rxap/plugin-angular@^16.1.1-dev.0 @rxap/plugin-nestjs@^16.1.0 @rxap/plugin-utilities@^16.1.0 @rxap/ts-morph@^1.1.0-dev.0 @rxap/utilities@^16.0.0 @rxap/workspace-utilities@^16.0.1 handlebars@^4.7.7 nx@^16.5.0 semver@^7.5.3 ts-morph@^18.0.0 tslib@2.6.2
23
23
  ```
24
24
  **Execute the init generator:**
25
25
  ```bash
@@ -76,6 +76,13 @@ yarn nx g @rxap/plugin-library:init-publishable
76
76
  yarn nx g @rxap/plugin-library:expose-as-schematic
77
77
  ```
78
78
 
79
+ ## bundle-json-schema
80
+ > bundle-json-schema generator
81
+
82
+ ```bash
83
+ yarn nx g @rxap/plugin-library:bundle-json-schema
84
+ ```
85
+
79
86
  ## init
80
87
  > Create and update configurations to use rxap package publish concept
81
88
 
@@ -124,6 +131,13 @@ yarn nx g @rxap/plugin-library:init-publishable
124
131
  ```bash
125
132
  yarn nx g @rxap/plugin-library:expose-as-schematic
126
133
  ```
134
+
135
+ ## bundle-json-schema
136
+ > bundle-json-schema generator
137
+
138
+ ```bash
139
+ yarn nx g @rxap/plugin-library:bundle-json-schema
140
+ ```
127
141
  # Executors
128
142
 
129
143
  ## update-dependencies
package/generators.json CHANGED
@@ -34,6 +34,11 @@
34
34
  "factory": "./src/generators/expose-as-schematic/generator",
35
35
  "schema": "./src/generators/expose-as-schematic/schema.json",
36
36
  "description": "expose-as-schematic generator"
37
+ },
38
+ "bundle-json-schema": {
39
+ "factory": "./src/generators/bundle-json-schema/generator",
40
+ "schema": "./src/generators/bundle-json-schema/schema.json",
41
+ "description": "bundle-json-schema generator"
37
42
  }
38
43
  },
39
44
  "schematics": {
@@ -71,6 +76,11 @@
71
76
  "factory": "./src/generators/expose-as-schematic/index",
72
77
  "schema": "./src/generators/expose-as-schematic/schema.json",
73
78
  "description": "expose-as-schematic generator"
79
+ },
80
+ "bundle-json-schema": {
81
+ "factory": "./src/generators/bundle-json-schema/index",
82
+ "schema": "./src/generators/bundle-json-schema/schema.json",
83
+ "description": "bundle-json-schema generator"
74
84
  }
75
85
  }
76
86
  }
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "16.0.0",
2
+ "version": "16.1.0-dev.0",
3
3
  "name": "@rxap/plugin-library",
4
4
  "license": "GPL-3.0-or-later",
5
5
  "dependencies": {
@@ -14,10 +14,10 @@
14
14
  "@rxap/generator-ts-morph": "^1.0.1",
15
15
  "@rxap/generator-utilities": "^1.1.0",
16
16
  "@rxap/node-utilities": "^1.1.0",
17
- "@rxap/plugin-angular": "^16.1.0",
17
+ "@rxap/plugin-angular": "^16.1.1-dev.0",
18
18
  "@rxap/plugin-nestjs": "^16.1.0",
19
19
  "@rxap/plugin-utilities": "^16.1.0",
20
- "@rxap/ts-morph": "^1.0.1",
20
+ "@rxap/ts-morph": "^1.1.0-dev.0",
21
21
  "@rxap/utilities": "^16.0.0",
22
22
  "@rxap/workspace-utilities": "^16.0.1",
23
23
  "handlebars": "^4.7.7",
@@ -62,7 +62,7 @@
62
62
  },
63
63
  {
64
64
  "package": "@rxap/plugin-angular",
65
- "version": "16.1.0"
65
+ "version": "16.1.1-dev.0"
66
66
  },
67
67
  {
68
68
  "package": "@rxap/plugin-nestjs",
@@ -78,7 +78,7 @@
78
78
  },
79
79
  {
80
80
  "package": "@rxap/ts-morph",
81
- "version": "1.0.1"
81
+ "version": "1.1.0-dev.0"
82
82
  },
83
83
  {
84
84
  "package": "@rxap/utilities",
@@ -101,6 +101,7 @@
101
101
  },
102
102
  "schematics": "./generators.json",
103
103
  "type": "commonjs",
104
+ "gitHead": "58070f2586b30e6bb1a13247cef1330da97279a1",
104
105
  "main": "./src/index.js",
105
106
  "types": "./src/index.d.ts"
106
107
  }
@@ -24,6 +24,10 @@ function runExecutor(options, context) {
24
24
  const normalizedVersion = projectJson.version.replace(/-.*$/, '');
25
25
  if (!(0, semver_1.satisfies)(normalizedVersion, versionRange)) {
26
26
  console.error(`The project version '${projectJson.version}' normalized '${normalizedVersion}' is not compatible with the '${options.packageName}' version '${targetVersion}' with the range '${versionRange}'`);
27
+ if (process.env.WORKSPACE_UPGRADE) {
28
+ console.warn('Detecting workspace upgrade mode');
29
+ return { success: true };
30
+ }
27
31
  return {
28
32
  success: false,
29
33
  };
@@ -1 +1 @@
1
- {"version":3,"file":"executor.js","sourceRoot":"","sources":["../../../../../../../packages/plugin/library/src/executors/check-version/executor.ts"],"names":[],"mappings":";;;AACA,6DAAmE;AACnE,mCAGgB;AAGhB,SAA8B,WAAW,CACvC,OAAmC,EACnC,OAAwB;;;QAExB,OAAO,CAAC,GAAG,CAAC,+BAA+B,EAAE,OAAO,CAAC,CAAC;QAEtD,MAAM,WAAW,GAAG,IAAA,4CAAyB,EAAC,OAAO,CAAC,CAAC;QACvD,MAAM,eAAe,GAAG,IAAA,4CAAyB,EAAC,OAAO,EAAE,WAAW,CAAC,CAAC;QAExE,IAAI,aAAa,GAAG,MAAA,eAAe,CAAC,eAAe,CAAC,OAAO,CAAC,WAAW,CAAC,mCACtE,eAAe,CAAC,YAAY,CAAC,OAAO,CAAC,WAAW,CAAC,CAAC;QAEpD,IAAI,CAAC,aAAa,EAAE;YAClB,OAAO,CAAC,KAAK,CAAC,eAAgB,OAAO,CAAC,WAAY,4CAA4C,CAAC,CAAC;YAChG,OAAO;gBACL,OAAO,EAAE,KAAK;aACf,CAAC;SACH;QAED,aAAa,GAAG,aAAa,CAAC,OAAO,CAAC,OAAO,EAAE,EAAE,CAAC,CAAC;QAEnD,OAAO,CAAC,GAAG,CAAC,YAAa,OAAO,CAAC,WAAY,cAAe,aAAc,EAAE,CAAC,CAAC;QAC9E,OAAO,CAAC,GAAG,CAAC,oBAAqB,WAAW,CAAC,OAAQ,EAAE,CAAC,CAAC;QAEzD,MAAM,OAAO,GAAG,IAAA,cAAK,EAAC,aAAa,CAAC,CAAC;QAErC,MAAM,YAAY,GAAG,KAAM,OAAO,CAAC,KAAM,EAAE,CAAC;QAE5C,MAAM,iBAAiB,GAAG,WAAW,CAAC,OAAO,CAAC,OAAO,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC;QAElE,IAAI,CAAC,IAAA,kBAAS,EAAC,iBAAiB,EAAE,YAAY,CAAC,EAAE;YAC/C,OAAO,CAAC,KAAK,CAAC,wBAAyB,WAAW,CAAC,OAAQ,iBAAkB,iBAAkB,iCAAkC,OAAO,CAAC,WAAY,cAAe,aAAc,qBAAsB,YAAa,GAAG,CAAC,CAAC;YAC1N,OAAO;gBACL,OAAO,EAAE,KAAK;aACf,CAAC;SACH;QAED,OAAO;YACL,OAAO,EAAE,IAAI;SACd,CAAC;;CACH;AAxCD,8BAwCC"}
1
+ {"version":3,"file":"executor.js","sourceRoot":"","sources":["../../../../../../../packages/plugin/library/src/executors/check-version/executor.ts"],"names":[],"mappings":";;;AACA,6DAAmE;AACnE,mCAGgB;AAGhB,SAA8B,WAAW,CACvC,OAAmC,EACnC,OAAwB;;;QAExB,OAAO,CAAC,GAAG,CAAC,+BAA+B,EAAE,OAAO,CAAC,CAAC;QAEtD,MAAM,WAAW,GAAG,IAAA,4CAAyB,EAAC,OAAO,CAAC,CAAC;QACvD,MAAM,eAAe,GAAG,IAAA,4CAAyB,EAAC,OAAO,EAAE,WAAW,CAAC,CAAC;QAExE,IAAI,aAAa,GAAG,MAAA,eAAe,CAAC,eAAe,CAAC,OAAO,CAAC,WAAW,CAAC,mCACtE,eAAe,CAAC,YAAY,CAAC,OAAO,CAAC,WAAW,CAAC,CAAC;QAEpD,IAAI,CAAC,aAAa,EAAE;YAClB,OAAO,CAAC,KAAK,CAAC,eAAgB,OAAO,CAAC,WAAY,4CAA4C,CAAC,CAAC;YAChG,OAAO;gBACL,OAAO,EAAE,KAAK;aACf,CAAC;SACH;QAED,aAAa,GAAG,aAAa,CAAC,OAAO,CAAC,OAAO,EAAE,EAAE,CAAC,CAAC;QAEnD,OAAO,CAAC,GAAG,CAAC,YAAa,OAAO,CAAC,WAAY,cAAe,aAAc,EAAE,CAAC,CAAC;QAC9E,OAAO,CAAC,GAAG,CAAC,oBAAqB,WAAW,CAAC,OAAQ,EAAE,CAAC,CAAC;QAEzD,MAAM,OAAO,GAAG,IAAA,cAAK,EAAC,aAAa,CAAC,CAAC;QAErC,MAAM,YAAY,GAAG,KAAM,OAAO,CAAC,KAAM,EAAE,CAAC;QAE5C,MAAM,iBAAiB,GAAG,WAAW,CAAC,OAAO,CAAC,OAAO,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC;QAElE,IAAI,CAAC,IAAA,kBAAS,EAAC,iBAAiB,EAAE,YAAY,CAAC,EAAE;YAC/C,OAAO,CAAC,KAAK,CAAC,wBAAyB,WAAW,CAAC,OAAQ,iBAAkB,iBAAkB,iCAAkC,OAAO,CAAC,WAAY,cAAe,aAAc,qBAAsB,YAAa,GAAG,CAAC,CAAC;YAC1N,IAAI,OAAO,CAAC,GAAG,CAAC,iBAAiB,EAAE;gBACjC,OAAO,CAAC,IAAI,CAAC,kCAAkC,CAAC,CAAC;gBACjD,OAAO,EAAE,OAAO,EAAE,IAAI,EAAE,CAAC;aAC1B;YACD,OAAO;gBACL,OAAO,EAAE,KAAK;aACf,CAAC;SACH;QAED,OAAO;YACL,OAAO,EAAE,IAAI;SACd,CAAC;;CACH;AA5CD,8BA4CC"}
@@ -0,0 +1,4 @@
1
+ import { Tree } from '@nx/devkit';
2
+ import { BundleJsonSchemaGeneratorSchema } from './schema';
3
+ export declare function bundleJsonSchemaGenerator(tree: Tree, options: BundleJsonSchemaGeneratorSchema): Promise<void>;
4
+ export default bundleJsonSchemaGenerator;
@@ -0,0 +1,88 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.bundleJsonSchemaGenerator = void 0;
4
+ const tslib_1 = require("tslib");
5
+ const json_schema_ref_parser_1 = tslib_1.__importDefault(require("@apidevtools/json-schema-ref-parser"));
6
+ const utilities_1 = require("@rxap/utilities");
7
+ const workspace_utilities_1 = require("@rxap/workspace-utilities");
8
+ const path_1 = require("path");
9
+ function bundleJsonSchemaGenerator(tree, options) {
10
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
11
+ const projectSourceRoot = (0, workspace_utilities_1.GetProjectSourceRoot)(tree, options.project);
12
+ const workspaceRoot = tree.root;
13
+ for (const file of (0, workspace_utilities_1.SearchFile)(tree, projectSourceRoot)) {
14
+ if (file.path.endsWith('template.schema.json')) {
15
+ const relativePathFromProjectSourceRoot = (0, path_1.dirname)((0, path_1.relative)(projectSourceRoot, file.path));
16
+ const schema = JSON.parse(file.content.toString());
17
+ const bundledSchema = yield json_schema_ref_parser_1.default.bundle(schema, {
18
+ resolve: {
19
+ file: {
20
+ canRead: ({ url }) => {
21
+ if (url.startsWith('http')) {
22
+ return false;
23
+ }
24
+ const relativeFromSchemaJsonFile = (0, path_1.relative)(workspaceRoot, url);
25
+ const absoluteFromSourceRoot = (0, path_1.join)(relativePathFromProjectSourceRoot, relativeFromSchemaJsonFile);
26
+ const absoluteFromWorkspaceRoot = (0, path_1.join)(projectSourceRoot, absoluteFromSourceRoot);
27
+ return tree.isFile(absoluteFromWorkspaceRoot);
28
+ },
29
+ read: ({ url }) => {
30
+ const relativeFromSchemaJsonFile = (0, path_1.relative)(workspaceRoot, url);
31
+ const absoluteFromSourceRoot = (0, path_1.join)(relativePathFromProjectSourceRoot, relativeFromSchemaJsonFile);
32
+ const absoluteFromWorkspaceRoot = (0, path_1.join)(projectSourceRoot, absoluteFromSourceRoot);
33
+ return tree.read(absoluteFromWorkspaceRoot).toString();
34
+ }
35
+ }
36
+ }
37
+ });
38
+ removeProperty(bundledSchema, 'definitions');
39
+ removeProperty(bundledSchema, '$id');
40
+ removeProperty(bundledSchema, '$schema');
41
+ fixNestaedDefinitions(bundledSchema);
42
+ tree.write(file.path.replace('template.schema.json', 'schema.json'), JSON.stringify(bundledSchema, null, 2));
43
+ }
44
+ }
45
+ });
46
+ }
47
+ exports.bundleJsonSchemaGenerator = bundleJsonSchemaGenerator;
48
+ function removeProperty(obj, propertyName) {
49
+ const propertyPaths = [];
50
+ for (const { key, propertyPath } of (0, utilities_1.EachProperty)(obj)) {
51
+ if (key === propertyName) {
52
+ propertyPaths.push(propertyPath);
53
+ }
54
+ }
55
+ for (const propertyPath of propertyPaths) {
56
+ if (propertyPath === propertyName) {
57
+ continue;
58
+ }
59
+ (0, utilities_1.RemoveFromObject)(obj, propertyPath);
60
+ }
61
+ }
62
+ function fixNestaedDefinitions({ definitions }) {
63
+ var _a;
64
+ if (!definitions) {
65
+ return;
66
+ }
67
+ for (const [key, definition] of Object.entries(definitions)) {
68
+ const nestedDefinitions = [];
69
+ for (const { key, value } of (0, utilities_1.EachProperty)(definition)) {
70
+ if (key === '$ref') {
71
+ nestedDefinitions.push(value);
72
+ }
73
+ }
74
+ for (const nested of nestedDefinitions) {
75
+ const definitionName = nested.replace('#/definitions/', '');
76
+ if (!definitions[definitionName]) {
77
+ console.log(`Definition '${key}' has nested definition '${definitionName}' which is not defined!`);
78
+ }
79
+ else {
80
+ (_a = definition['definitions']) !== null && _a !== void 0 ? _a : (definition['definitions'] = {});
81
+ definition['definitions'][definitionName] = definitions[definitionName];
82
+ }
83
+ }
84
+ console.log(`Definition '${key}' has nested definitions:`, nestedDefinitions);
85
+ }
86
+ }
87
+ exports.default = bundleJsonSchemaGenerator;
88
+ //# sourceMappingURL=generator.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"generator.js","sourceRoot":"","sources":["../../../../../../../packages/plugin/library/src/generators/bundle-json-schema/generator.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,2 @@
1
+ declare const schematic: (generatorOptions: import("./schema").BundleJsonSchemaGeneratorSchema) => (tree: any, context: any) => Promise<any>;
2
+ export default schematic;
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const tslib_1 = require("tslib");
4
+ const devkit_1 = require("@nx/devkit");
5
+ const generator_1 = tslib_1.__importDefault(require("./generator"));
6
+ const schematic = (0, devkit_1.convertNxGenerator)(generator_1.default);
7
+ exports.default = schematic;
8
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../../packages/plugin/library/src/generators/bundle-json-schema/index.ts"],"names":[],"mappings":";;;AAAA,uCAAgD;AAChD,oEAAoC;AAEpC,MAAM,SAAS,GAAG,IAAA,2BAAkB,EAAC,mBAAS,CAAC,CAAC;AAChD,kBAAe,SAAS,CAAC"}
@@ -0,0 +1,3 @@
1
+ export interface BundleJsonSchemaGeneratorSchema {
2
+ project: string;
3
+ }
@@ -0,0 +1,13 @@
1
+ {
2
+ "$schema": "http://json-schema.org/schema",
3
+ "$id": "BundleJsonSchema",
4
+ "title": "",
5
+ "type": "object",
6
+ "properties": {
7
+ "project": {
8
+ "type": "string",
9
+ "description": "Name of the project"
10
+ }
11
+ },
12
+ "required": ["project"]
13
+ }