Unverified Commit 8cee03f1 authored by Thomas Kaul's avatar Thomas Kaul Committed by GitHub
Browse files

Feature/upgrade Nx to version 21.1.2 (#4809)

* Upgrade Nx to version 21.1.2

* Update changelog
parent 5fdd27ec
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -22,4 +22,3 @@ JWT_SECRET_KEY=<INSERT_RANDOM_STRING>
# For more info, see: https://nx.dev/concepts/inferred-tasks
NX_ADD_PLUGINS=false
NX_NATIVE_COMMAND_RUNNER=false
+2 −0
Original line number Diff line number Diff line
@@ -25,8 +25,10 @@ npm-debug.log

# misc
/.angular/cache
.cursor/rules/nx-rules.mdc
.env
.env.prod
.github/instructions/nx.instructions.md
.nx/cache
.nx/workspace-data
/.sass-cache
+6 −0
Original line number Diff line number Diff line
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased

### Changed

- Upgraded `Nx` from version `20.8.1` to `21.1.2`

## 2.166.0 - 2025-06-05

### Added
+1 −0
Original line number Diff line number Diff line
@@ -33,6 +33,7 @@ COPY ./nx.json nx.json
COPY ./replace.build.mjs replace.build.mjs
COPY ./tsconfig.base.json tsconfig.base.json

ENV NX_DAEMON=false
RUN npm run build:production

# Prepare the dist image with additional node_modules
+3 −4
Original line number Diff line number Diff line
@@ -3,12 +3,13 @@
  "$schema": "../../node_modules/nx/schemas/project-schema.json",
  "sourceRoot": "apps/client-e2e/src",
  "projectType": "application",
  "tags": [],
  "implicitDependencies": ["client"],
  "targets": {
    "e2e": {
      "executor": "@nx/cypress:cypress",
      "options": {
        "cypressConfig": "apps/client-e2e/cypress.json",
        "tsConfig": "apps/client-e2e/tsconfig.e2e.json",
        "devServerTarget": "client:serve"
      },
      "configurations": {
@@ -17,7 +18,5 @@
        }
      }
    }
  },
  "tags": [],
  "implicitDependencies": ["client"]
  }
}
Loading