Skip to main content
Filter by
Sorted by
Tagged with
-5 votes
0 answers
106 views

I have a nx monorepo with a lib - typescript In the lib there is a directory with subdirectories per feature. I don't need one of the types anymore - so I deleted the file inside which the type was ...
user15013406's user avatar
4 votes
0 answers
133 views

I use this nx generate @angular/core:inject to migrate projects but get below error: Could not find any files to migrate under the path /home/jibit/Desktop/jibit-angular-workspace/. Cannot run the ...
kian's user avatar
  • 1,783
0 votes
0 answers
42 views

I am using nxrocks/spring-boot plugin to build my multi-maven project in NX mono repo. This plugin has install and build executors and e.g if I build one submodule x which has dependency on submodule ...
Pristina's user avatar
1 vote
0 answers
98 views

I'm using NX Monorepo which contains a Nest.Js backend called Gateway. I'm trying to get hot reloading to work to remove the burden of setting up environments. However, making file changes doesn't ...
DeathKing's user avatar
  • 321
0 votes
0 answers
30 views

How do we start the development server for a monorepo app using a custom script from different pacakge, which will be typically used to run the app this is package.json at root level { "name&...
Mojo's user avatar
  • 518
1 vote
0 answers
79 views

I want to try the new typescript compiler (pre-releases for typescript 7) with my nx mono repo. I installed the pre-release with npm install -D @typescript/native-preview Now I would assume that I ...
andymel's user avatar
  • 6,048
0 votes
0 answers
237 views

Im looking for help with basic lib dependency in an app. not a custom solution Nx monorepo: Internal library imports not found after production build I'm working in an Nx monorepo (v20.4.4) with a ...
Omar's user avatar
  • 3,090
0 votes
0 answers
25 views

I'm working on a monorepo project that includes both React Native and Next.js (Web). I'm encountering an issue where I am using react-native-svg for rendering SVGs. The problem arises when the code ...
Sadaqat Ali's user avatar
0 votes
0 answers
34 views

We have a NX Monorepo for a complex application. Recent change request from our client introduced couple of changes and one micro FE application was practically duplicated. It consists of multiple ...
mat.hudak's user avatar
  • 3,306
0 votes
0 answers
155 views

I am working on a project using React with TypeScript and running my project locally using NX. However, often times, the localhost would stop working with a message popping up on my command line ...
mm 8888's user avatar
0 votes
0 answers
103 views

I want to create an NX generator to ensure that newly generated projects e.g. of type @nx/js:library have their compilerOptions module value set to "ESNext" and not "commonjs" at ...
robtot's user avatar
  • 1,069
0 votes
0 answers
116 views

I'm new to nx and mono repos. We have a react, stencil.js, nx repo. Each project is under libs. One project is the "main" application. The page itself. Second project is the "sub" ...
Duckduckgoose's user avatar
0 votes
1 answer
69 views

I have a monorepo based on NX/React/Vite/MUI. The mono repo structure is as follows: root package.json apps desktop-app web-app packages UI library A package.json UI library B package.json UI ...
Shijie Zhang's user avatar
0 votes
0 answers
66 views

This is my first time using NX and I've found a problem related to NestJS under NX monorepo. I'm using NX 20.4.2, NestJS 10.0.2 (installed via @nx/nest plugin) and yarn 1 as package manager. I've ...
Kan Ishigami's user avatar
0 votes
0 answers
363 views

I have an angular v19 app in a NX monorepo with module federation configured. I want to enable HMR for this project so I turned on the option in project.json file: "serve": { "...
vinnyo's user avatar
  • 61
0 votes
0 answers
70 views

For a typescript library added to a Nx monorepo without build configuration (Vite): .env file is created in the root of the project: redux Accessing using dotenv: config.ts import * as dotenv from '...
Dumindu Jayasekara's user avatar
2 votes
0 answers
372 views

I have the following minimalistic nx.json config: { "$schema": "./node_modules/nx/schemas/nx-schema.json", "targetDefaults": { "build": { "...
johannchopin's user avatar
0 votes
0 answers
182 views

Trying to debug Nest.js application using vscode. Auto Attach: always Tried to find some relevant configuration, but could not find any, so I tried using the Next.js configuration suggested in this ...
A K's user avatar
  • 183
-1 votes
1 answer
106 views

I'm encountering an error when trying to run a test with Jest in a project that uses Pulumi. Here's the error stack: Cannot find module 'spdx-license-ids' from '../../node_modules/spdx-expression-...
Nahom's user avatar
  • 414
2 votes
0 answers
241 views

I'm setting up a NX monorepo with Expo for mobile apps and using NativeWind for styling. While the project runs fine with standard CSS, I'm encountering issues when integrating NativeWind. Despite ...
Aryan Biswas's user avatar
0 votes
0 answers
263 views

I have set up an Nx monorepo for a Nest.js Standalone. I noticed that when I changed my project.json configurations to change Nx Commands and add modes (Dev, Prod) so I toggle optimization in webpack ...
Raed Addala's user avatar
0 votes
0 answers
55 views

When I run nx serve web, it starts the web app using Vite. Similarly, when I run nx start mobile, it starts the mobile app using Expo. However, I don’t understand how Nx knows which build tool to use ...
Touseef Ahmad's user avatar
0 votes
1 answer
77 views

Im using NX with firebase app hosting to get my angular application deployed. It is deploying correctly and seems like auth is working there on the live site but when running the app locally the popup ...
skyleguy's user avatar
  • 1,211
5 votes
2 answers
436 views

With this command, I installed Nx correctly on my system npm install -g nx Then I started my first project with this command npx create-nx-workspace my-monorepo I answered almost all the questions ...
davood beheshti's user avatar
0 votes
0 answers
126 views

I've combined multiple technologies in a single monorepo, specifically Node and Gradle. With the current setup, a version change of Node dependencies will trigger Gradle build and deploys, as Nx is ...
Marian Klühspies's user avatar