@rxap/preset-angular 20.0.2 → 20.0.3-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.
Files changed (3) hide show
  1. package/CHANGELOG.md +4 -0
  2. package/README.md +13 -16
  3. package/package.json +4 -4
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
+ ## [20.0.3-dev.0](https://gitlab.com/rxap/packages/compare/@rxap/preset-angular@20.0.2...@rxap/preset-angular@20.0.3-dev.0) (2025-02-17)
7
+
8
+ **Note:** Version bump only for package @rxap/preset-angular
9
+
6
10
  ## [20.0.2](https://gitlab.com/rxap/packages/compare/@rxap/preset-angular@20.0.1...@rxap/preset-angular@20.0.2) (2025-02-13)
7
11
 
8
12
  **Note:** Version bump only for package @rxap/preset-angular
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # @rxap/preset-angular
1
+ This package provides generators for initializing Angular projects with pre-configured settings. It leverages other `@rxap` plugins to set up workspace and Angular-specific configurations, including options for package management, standalone components, license, and repository URL. It aims to streamline the setup process for new Angular projects.
2
2
 
3
3
  [![npm version](https://img.shields.io/npm/v/@rxap/preset-angular?style=flat-square)](https://www.npmjs.com/package/@rxap/preset-angular)
4
4
  [![commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=flat-square)](https://commitizen.github.io/cz-cli/)
@@ -10,6 +10,8 @@
10
10
  - [Installation](#installation)
11
11
  - [Guides](#guides)
12
12
  - [Generators](#generators)
13
+ - [preset](#preset)
14
+ - [init](#init)
13
15
 
14
16
  # Installation
15
17
 
@@ -45,26 +47,21 @@ yarn
45
47
  > preset generator
46
48
 
47
49
  ```bash
48
- yarn nx g @rxap/preset-angular:preset
50
+ nx g @rxap/preset-angular:preset
49
51
  ```
50
52
 
51
- ## init
52
- > Initialize the package in the workspace
53
-
54
- ```bash
55
- yarn nx g @rxap/preset-angular:init
56
- ```
57
-
58
- ## preset
59
- > preset generator
60
-
61
- ```bash
62
- yarn nx g @rxap/preset-angular:preset
63
- ```
53
+ Option | Type | Default | Description
54
+ --- | --- | --- | ---
55
+ packages | boolean | | If true, the workspace will be initialized for package development
56
+ standalone | boolean | | If true, the workspace will be initialized for standalone development
57
+ skipInstall | boolean | |
58
+ license | string | gpl |
59
+ repositoryUrl | string | | The URL of the repository
60
+ prefix | string | | The prefix for the angular components
64
61
 
65
62
  ## init
66
63
  > Initialize the package in the workspace
67
64
 
68
65
  ```bash
69
- yarn nx g @rxap/preset-angular:init
66
+ nx g @rxap/preset-angular:init
70
67
  ```
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
- "version": "20.0.2",
2
+ "version": "20.0.3-dev.0",
3
3
  "name": "@rxap/preset-angular",
4
4
  "description": "This package provides generators for initializing Angular projects with pre-configured settings. It leverages other `@rxap` plugins to set up workspace and Angular-specific configurations, including options for package management, standalone components, license, and repository URL. It aims to streamline the setup process for new Angular projects.\n",
5
5
  "license": "GPL-3.0-or-later",
6
6
  "dependencies": {
7
7
  "@nx/devkit": "20.4.2",
8
- "@rxap/plugin-angular": "^20.0.2",
9
- "@rxap/plugin-workspace": "^20.0.1",
8
+ "@rxap/plugin-angular": "^20.0.3-dev.0",
9
+ "@rxap/plugin-workspace": "^20.0.2-dev.0",
10
10
  "tslib": "2.6.2"
11
11
  },
12
12
  "author": {
@@ -41,6 +41,6 @@
41
41
  "schematics": "./generators.json",
42
42
  "type": "commonjs",
43
43
  "typings": "./src/index.d.ts",
44
- "gitHead": "402887412674e616554624b2c11770ca36982b78",
44
+ "gitHead": "9c6b5087587f25e790ac3eb934055381506e1f08",
45
45
  "types": "./src/index.d.ts"
46
46
  }