@rxap/preset-angular 20.0.5-dev.3 → 20.0.5-dev.4

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
+ ## [20.0.5-dev.4](https://gitlab.com/rxap/packages/compare/@rxap/preset-angular@20.0.5-dev.3...@rxap/preset-angular@20.0.5-dev.4) (2025-03-12)
7
+
8
+ **Note:** Version bump only for package @rxap/preset-angular
9
+
6
10
  ## [20.0.5-dev.3](https://gitlab.com/rxap/packages/compare/@rxap/preset-angular@20.0.5-dev.2...@rxap/preset-angular@20.0.5-dev.3) (2025-03-12)
7
11
 
8
12
  **Note:** Version bump only for package @rxap/preset-angular
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
- "version": "20.0.5-dev.3",
2
+ "version": "20.0.5-dev.4",
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
- "@nx/devkit": "20.4.6",
8
- "@rxap/plugin-angular": "^20.2.0-dev.2",
9
- "@rxap/plugin-workspace": "^20.1.1-dev.0",
7
+ "@nx/devkit": "20.5.0",
8
+ "@rxap/plugin-angular": "^20.2.0-dev.3",
9
+ "@rxap/plugin-workspace": "^20.1.1-dev.1",
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": "093c41c588b9f1274503e2d85794c9b6d59b1a24",
44
+ "gitHead": "e4552670b179901abc7ce57cc3ff490ac705b867",
45
45
  "types": "./src/index.d.ts"
46
46
  }
@@ -42,10 +42,10 @@ exports[`preset should use angular preset 2`] = `
42
42
  "@commitlint/cli": "latest",
43
43
  "@commitlint/config-conventional": "latest",
44
44
  "@nx/angular": "latest",
45
- "@nx/eslint": "20.4.6",
46
- "@nx/eslint-plugin": "20.4.6",
47
- "@nx/jest": "20.4.6",
48
- "@nx/js": "20.4.6",
45
+ "@nx/eslint": "20.5.0",
46
+ "@nx/eslint-plugin": "20.5.0",
47
+ "@nx/jest": "20.5.0",
48
+ "@nx/js": "20.5.0",
49
49
  "@rxap/cli": "latest",
50
50
  "@rxap/schematic-composer": "latest",
51
51
  "@swc-node/register": "~1.9.1",
@@ -1072,9 +1072,10 @@ module.exports = { ...nxPreset };
1072
1072
  `;
1073
1073
 
1074
1074
  exports[`preset should use angular preset 16`] = `
1075
- "import { getJestProjectsAsync } from '@nx/jest';
1075
+ "import type { Config } from 'jest';
1076
+ import { getJestProjectsAsync } from '@nx/jest';
1076
1077
 
1077
- export default async () => ({
1078
+ export default async (): Promise<Config> => ({
1078
1079
  projects: await getJestProjectsAsync(),
1079
1080
  });
1080
1081
  "