@rxap/preset-angular 19.0.0-dev.9 → 19.0.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 +20 -0
  2. package/GUIDES.md +15 -0
  3. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -3,6 +3,26 @@
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](https://gitlab.com/rxap/packages/compare/@rxap/preset-angular@19.0.0-dev.13...@rxap/preset-angular@19.0.0) (2024-06-18)
7
+
8
+ **Note:** Version bump only for package @rxap/preset-angular
9
+
10
+ # [19.0.0-dev.13](https://gitlab.com/rxap/packages/compare/@rxap/preset-angular@19.0.0-dev.12...@rxap/preset-angular@19.0.0-dev.13) (2024-06-18)
11
+
12
+ **Note:** Version bump only for package @rxap/preset-angular
13
+
14
+ # [19.0.0-dev.12](https://gitlab.com/rxap/packages/compare/@rxap/preset-angular@19.0.0-dev.11...@rxap/preset-angular@19.0.0-dev.12) (2024-06-18)
15
+
16
+ **Note:** Version bump only for package @rxap/preset-angular
17
+
18
+ # [19.0.0-dev.11](https://gitlab.com/rxap/packages/compare/@rxap/preset-angular@19.0.0-dev.10...@rxap/preset-angular@19.0.0-dev.11) (2024-06-18)
19
+
20
+ **Note:** Version bump only for package @rxap/preset-angular
21
+
22
+ # [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)
23
+
24
+ **Note:** Version bump only for package @rxap/preset-angular
25
+
6
26
  # [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)
7
27
 
8
28
  ### Bug Fixes
package/GUIDES.md CHANGED
@@ -0,0 +1,15 @@
1
+ # Create a new workspace
2
+
3
+ To create a new workspace, run the following command:
4
+
5
+ ```bash
6
+ WORKSPACE_NAME=my-workspace
7
+ yarn create nx-workspace@19.1.1 --preset @rxap/preset-angular@development --pm yarn --name $WORKSPACE_NAME
8
+ ```
9
+
10
+ Navigate to the newly created workspace and run the yarn install command:
11
+
12
+ ```bash
13
+ cd $WORKSPACE_NAME
14
+ yarn
15
+ ```
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
- "version": "19.0.0-dev.9",
2
+ "version": "19.0.0",
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.9",
8
- "@rxap/plugin-workspace": "^19.1.0-dev.8",
7
+ "@rxap/plugin-angular": "^19.1.0",
8
+ "@rxap/plugin-workspace": "^19.1.0",
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": "a261f463bc7d9023674bf53bbbc80d80df38a906"
42
+ "gitHead": "d983079aba781cc04989a4ea7948ae5d666dfa24"
43
43
  }