@rxap/preset-angular 19.0.1-dev.0 → 19.0.1-dev.1

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.0.1-dev.1](https://gitlab.com/rxap/packages/compare/@rxap/preset-angular@19.0.1-dev.0...@rxap/preset-angular@19.0.1-dev.1) (2024-06-20)
7
+
8
+ **Note:** Version bump only for package @rxap/preset-angular
9
+
6
10
  ## [19.0.1-dev.0](https://gitlab.com/rxap/packages/compare/@rxap/preset-angular@19.0.0...@rxap/preset-angular@19.0.1-dev.0) (2024-06-18)
7
11
 
8
12
  **Note:** Version bump only for package @rxap/preset-angular
package/README.md CHANGED
@@ -1,11 +1,47 @@
1
- # preset-angular
1
+ #
2
+ @rxap/preset-angular
2
3
 
3
- This library was generated with [Nx](https://nx.dev).
4
+ [![npm version](https://img.shields.io/npm/v/@rxap/preset-angular?style=flat-square)](https://www.npmjs.com/package/@rxap/preset-angular)
5
+ [![commitizen
6
+ friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=flat-square)](https://commitizen.github.io/cz-cli/)
7
+ [![styled with
8
+ prettier](https://img.shields.io/badge/styled_with-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettier)
9
+ ![Libraries.io dependency status for latest release, scoped npm
10
+ package](https://img.shields.io/librariesio/release/npm/@rxap/preset-angular)
11
+ ![npm](https://img.shields.io/npm/dm/@rxap/preset-angular)
12
+ ![NPM](https://img.shields.io/npm/l/@rxap/preset-angular) -
13
+ [Installation](#installation)
14
+ - [Guides](#guides)
15
+ - [Generators](#generators)
4
16
 
5
- ## Building
17
+ # Installation **Add the package to your workspace:** ```bash yarn add
18
+ @rxap/preset-angular
19
+ ```
20
+ # Guides
6
21
 
7
- Run `nx build preset-angular` to build the library.
22
+ # Create a new workspace
8
23
 
9
- ## Running unit tests
24
+ To create a new workspace, run the following command:
10
25
 
11
- Run `nx test preset-angular` to execute the unit tests via [Jest](https://jestjs.io).
26
+ ```bash
27
+ WORKSPACE_NAME=my-workspace
28
+ yarn create nx-workspace@19.1.1 --preset @rxap/preset-angular@development --pm yarn --name $WORKSPACE_NAME
29
+ ```
30
+
31
+ Navigate to the newly created workspace and run the yarn install command:
32
+
33
+ ```bash
34
+ cd $WORKSPACE_NAME
35
+ yarn
36
+ ```
37
+
38
+ # Generators
39
+
40
+ ##
41
+ preset
42
+ >
43
+ preset generator
44
+
45
+ ```bash yarn nx g
46
+ @rxap/preset-angular:preset
47
+ ```
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
- "version": "19.0.1-dev.0",
2
+ "version": "19.0.1-dev.1",
3
3
  "name": "@rxap/preset-angular",
4
4
  "license": "GPL-3.0-or-later",
5
5
  "dependencies": {
6
6
  "@nx/devkit": "19.3.0",
7
- "@rxap/plugin-angular": "^19.1.1-dev.0",
8
- "@rxap/plugin-workspace": "^19.1.1-dev.0",
7
+ "@rxap/plugin-angular": "^19.2.0-dev.0",
8
+ "@rxap/plugin-workspace": "^19.1.1-dev.1",
9
9
  "tslib": "2.6.2"
10
10
  },
11
11
  "author": {
@@ -39,5 +39,5 @@
39
39
  },
40
40
  "type": "commonjs",
41
41
  "typings": "./src/index.d.ts",
42
- "gitHead": "ffe854d3d7cf69a737411c0798157c1c945e3b5c"
42
+ "gitHead": "3fa5a96cac9ec03017cb91b15f918a0e66db9066"
43
43
  }