@rxap/preset-angular 19.0.0-dev.1 → 19.0.0-dev.10

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,46 @@
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.0.0-dev.10](https://gitlab.com/rxap/packages/compare/@rxap/preset-angular@19.0.0-dev.9...@rxap/preset-angular@19.0.0-dev.10) (2024-06-18)
7
+
8
+ **Note:** Version bump only for package @rxap/preset-angular
9
+
10
+ # [19.0.0-dev.9](https://gitlab.com/rxap/packages/compare/@rxap/preset-angular@19.0.0-dev.8...@rxap/preset-angular@19.0.0-dev.9) (2024-06-18)
11
+
12
+ ### Bug Fixes
13
+
14
+ - ensure only valid options are stored ([c754404](https://gitlab.com/rxap/packages/commit/c75440438fe03e550dad208b46b378aee888a995))
15
+
16
+ # [19.0.0-dev.8](https://gitlab.com/rxap/packages/compare/@rxap/preset-angular@19.0.0-dev.7...@rxap/preset-angular@19.0.0-dev.8) (2024-06-17)
17
+
18
+ **Note:** Version bump only for package @rxap/preset-angular
19
+
20
+ # [19.0.0-dev.7](https://gitlab.com/rxap/packages/compare/@rxap/preset-angular@19.0.0-dev.6...@rxap/preset-angular@19.0.0-dev.7) (2024-06-17)
21
+
22
+ **Note:** Version bump only for package @rxap/preset-angular
23
+
24
+ # [19.0.0-dev.6](https://gitlab.com/rxap/packages/compare/@rxap/preset-angular@19.0.0-dev.5...@rxap/preset-angular@19.0.0-dev.6) (2024-06-17)
25
+
26
+ **Note:** Version bump only for package @rxap/preset-angular
27
+
28
+ # [19.0.0-dev.5](https://gitlab.com/rxap/packages/compare/@rxap/preset-angular@19.0.0-dev.4...@rxap/preset-angular@19.0.0-dev.5) (2024-06-17)
29
+
30
+ **Note:** Version bump only for package @rxap/preset-angular
31
+
32
+ # [19.0.0-dev.4](https://gitlab.com/rxap/packages/compare/@rxap/preset-angular@19.0.0-dev.3...@rxap/preset-angular@19.0.0-dev.4) (2024-06-17)
33
+
34
+ **Note:** Version bump only for package @rxap/preset-angular
35
+
36
+ # [19.0.0-dev.3](https://gitlab.com/rxap/packages/compare/@rxap/preset-angular@19.0.0-dev.2...@rxap/preset-angular@19.0.0-dev.3) (2024-06-17)
37
+
38
+ ### Bug Fixes
39
+
40
+ - skip manuel package install ([6cba945](https://gitlab.com/rxap/packages/commit/6cba9450cc3355fe4cfa8809221e4ccd36d3d15c))
41
+
42
+ # [19.0.0-dev.2](https://gitlab.com/rxap/packages/compare/@rxap/preset-angular@19.0.0-dev.1...@rxap/preset-angular@19.0.0-dev.2) (2024-06-17)
43
+
44
+ **Note:** Version bump only for package @rxap/preset-angular
45
+
6
46
  # 19.0.0-dev.1 (2024-06-17)
7
47
 
8
48
  **Note:** Version bump only for package @rxap/preset-angular
package/package.json CHANGED
@@ -1,12 +1,11 @@
1
1
  {
2
- "version": "19.0.0-dev.1",
2
+ "version": "19.0.0-dev.10",
3
3
  "name": "@rxap/preset-angular",
4
4
  "license": "GPL-3.0-or-later",
5
5
  "dependencies": {
6
6
  "@nx/devkit": "19.1.1",
7
- "@rxap/plugin-angular": "^19.1.0-dev.3",
8
- "@rxap/plugin-workspace": "^19.1.0-dev.4",
9
- "@rxap/workspace-utilities": "^19.2.0-dev.6",
7
+ "@rxap/plugin-angular": "^19.1.0-dev.10",
8
+ "@rxap/plugin-workspace": "^19.1.0-dev.8",
10
9
  "tslib": "2.6.2"
11
10
  },
12
11
  "author": {
@@ -40,5 +39,5 @@
40
39
  },
41
40
  "type": "commonjs",
42
41
  "typings": "./src/index.d.ts",
43
- "gitHead": "a86ff17c44a01ef4a847db848aed3ae7ce6fa954"
42
+ "gitHead": "5a8502383a8e043c3a2426401aa692e59a0ef326"
44
43
  }
@@ -4,19 +4,20 @@ exports.presetGenerator = void 0;
4
4
  const tslib_1 = require("tslib");
5
5
  const plugin_angular_1 = require("@rxap/plugin-angular");
6
6
  const plugin_workspace_1 = require("@rxap/plugin-workspace");
7
- const workspace_utilities_1 = require("@rxap/workspace-utilities");
8
- const path_1 = require("path");
9
7
  function presetGenerator(tree, options) {
10
8
  return tslib_1.__awaiter(this, void 0, void 0, function* () {
11
- const packageJsonFilePath = (0, path_1.join)(__dirname, '..', '..', 'package.json');
12
- console.log('packageJsonFilePath:', packageJsonFilePath);
13
- // eslint-disable-next-line @typescript-eslint/no-var-requires
14
- const { dependencies } = require(packageJsonFilePath);
15
- console.log('dependencies:', JSON.stringify(dependencies));
16
- yield (0, workspace_utilities_1.AddPackageJsonDevDependency)(tree, '@rxap/plugin-angular', dependencies['@rxap/plugin-angular']);
17
- yield (0, workspace_utilities_1.AddPackageJsonDevDependency)(tree, '@rxap/plugin-workspace', dependencies['@rxap/plugin-workspace']);
18
- yield (0, plugin_workspace_1.WorkspaceInitGenerator)(tree, Object.assign(Object.assign({}, options), { overwrite: false, skipFormat: false, skipProjects: false }));
19
- yield (0, plugin_angular_1.AngularInitGenerator)(tree, Object.assign(Object.assign({}, options), { overwrite: false, skipFormat: false, skipProjects: false }));
9
+ const { packages, standalone, license, repositoryUrl, prefix, } = options;
10
+ yield (0, plugin_workspace_1.WorkspaceInitGenerator)(tree, {
11
+ packages,
12
+ standalone,
13
+ license,
14
+ repositoryUrl,
15
+ overwrite: true,
16
+ });
17
+ yield (0, plugin_angular_1.AngularInitGenerator)(tree, {
18
+ prefix,
19
+ overwrite: true,
20
+ });
20
21
  });
21
22
  }
22
23
  exports.presetGenerator = presetGenerator;
@@ -1 +1 @@
1
- {"version":3,"file":"generator.js","sourceRoot":"","sources":["../../../../../../../packages/preset/angular/src/generators/preset/generator.ts"],"names":[],"mappings":";;;;AACA,yDAA4D;AAC5D,6DAAgE;AAChE,mEAAwE;AAExE,+BAA4B;AAE5B,SAAsB,eAAe,CACnC,IAAU,EACV,OAA8B;;QAE9B,MAAM,mBAAmB,GAAG,IAAA,WAAI,EAAC,SAAS,EAAE,IAAI,EAAE,IAAI,EAAE,cAAc,CAAC,CAAC;QACxE,OAAO,CAAC,GAAG,CAAC,sBAAsB,EAAE,mBAAmB,CAAC,CAAC;QACzD,8DAA8D;QAC9D,MAAM,EAAE,YAAY,EAAE,GAAG,OAAO,CAAC,mBAAmB,CAAC,CAAC;QACtD,OAAO,CAAC,GAAG,CAAC,eAAe,EAAE,IAAI,CAAC,SAAS,CAAC,YAAY,CAAC,CAAC,CAAC;QAC3D,MAAM,IAAA,iDAA2B,EAAC,IAAI,EAAE,sBAAsB,EAAE,YAAY,CAAC,sBAAsB,CAAC,CAAC,CAAC;QACtG,MAAM,IAAA,iDAA2B,EAAC,IAAI,EAAE,wBAAwB,EAAE,YAAY,CAAC,wBAAwB,CAAC,CAAC,CAAC;QAC1G,MAAM,IAAA,yCAAsB,EAAC,IAAI,kCAC5B,OAAO,KACV,SAAS,EAAE,KAAK,EAChB,UAAU,EAAE,KAAK,EACjB,YAAY,EAAE,KAAK,IACnB,CAAC;QACH,MAAM,IAAA,qCAAoB,EAAC,IAAI,kCAC1B,OAAO,KACV,SAAS,EAAE,KAAK,EAChB,UAAU,EAAE,KAAK,EACjB,YAAY,EAAE,KAAK,IACnB,CAAC;IACL,CAAC;CAAA;AAvBD,0CAuBC;AAED,kBAAe,eAAe,CAAC"}
1
+ {"version":3,"file":"generator.js","sourceRoot":"","sources":["../../../../../../../packages/preset/angular/src/generators/preset/generator.ts"],"names":[],"mappings":";;;;AACA,yDAA4D;AAC5D,6DAAgE;AAGhE,SAAsB,eAAe,CACnC,IAAU,EACV,OAA8B;;QAE9B,MAAM,EACJ,QAAQ,EACR,UAAU,EACV,OAAO,EACP,aAAa,EACb,MAAM,GACP,GAAG,OAAO,CAAC;QACZ,MAAM,IAAA,yCAAsB,EAAC,IAAI,EAAE;YACjC,QAAQ;YACR,UAAU;YACV,OAAO;YACP,aAAa;YACb,SAAS,EAAE,IAAI;SAChB,CAAC,CAAC;QACH,MAAM,IAAA,qCAAoB,EAAC,IAAI,EAAE;YAC/B,MAAM;YACN,SAAS,EAAE,IAAI;SAChB,CAAC,CAAC;IACL,CAAC;CAAA;AAtBD,0CAsBC;AAED,kBAAe,eAAe,CAAC"}