Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
85 views

I am using Next.js (Server Side Rendering). When running the workspace locally, a package that is defined in the root package.json but used in a sub-directory works. However when deployed, a module ...
10may's user avatar
  • 328
0 votes
0 answers
120 views

I am getting error while creating the build for my app. But even trying multiple solutions like skiplibcheck, @ts-ignore, @ts-nocheck, upgrading and downgrading the version of react-leaflet library ...
Hardik Panwar's user avatar
0 votes
1 answer
206 views

After creating a new monorepo with a package for a new react-native project (0.77.2), the Android build was failing with the following error: FAILURE: Build failed with an exception. * Where: ...
MikeL's user avatar
  • 2,914
0 votes
0 answers
111 views

I’m using yarn v4 workspaces and need to be able to add an NPM token to access a private package. Locally this works fine as I can either define a .env.yarn file or add it to my .env file and use the ...
Sam Judge's user avatar
0 votes
0 answers
29 views

I am attempting to build a lambda-layer from within a yarn workspace. the basic pattern I am using was inspired by the code at https://github.com/lukehedger/yarn-workspace-lambda-layer. This is the ...
tmc's user avatar
  • 514
0 votes
2 answers
554 views

I have a monorepo with several packages (ui-components, logging, etc) which are imported into the sibling app package. The app is a Next.js app with React & Redux. After upgrading Next.js from v14....
ebbishop's user avatar
  • 2,013
0 votes
0 answers
78 views

I have a rather bespoke pnpm workspaces project based monorepo with minimal Nx for caching and project graph. In pnpm workspaces, each project has an anemic node_modules that usually just has symlinks ...
Novaterata's user avatar
  • 4,903
0 votes
0 answers
99 views

I have set up a react native monorepo using Yarn Workspaces. The goal would be to write one App as core, and the versions for different platforms would be siblings of core in the monorepo and would ...
Adrian Bunea's user avatar
2 votes
1 answer
2k views

I have a TypeScript project, based on Node.js, with several modules (using workspaces). Everything executes correctly, but I’m still receiving warnings. In particular, when running this (as a package....
andrewf's user avatar
  • 1,414
3 votes
1 answer
160 views

I have the following project I am using Pulumi to manage my various cloud run jobs. I am trying to set up all my package management to use a tool like mise for each of development. The problem is each ...
danielsmith1789's user avatar
0 votes
0 answers
28 views

It seems after build my react app works well in chrome 38 version. But, after moving to mono repo structure, same code not working in chrome 38 after build and looks like some part for code I see not ...
Radhakrishnan Y's user avatar
0 votes
1 answer
223 views

I am trying to set up the botpress v12 repo on my local machine. I am facing issues during dependency resolution This is my environment OS: MacOS 15.1 Chip: Apple M2 Pro Terminal: iTerm2 (arch: arm64)...
Phani Gopaluni's user avatar
1 vote
0 answers
113 views

I have a Yarn workspace project with the following structure workspaceRoot apps common web-common server-common chat The chat project is a NextJS app (14.3). I inadvertently have a ...
vijayst's user avatar
  • 22.1k
1 vote
0 answers
426 views

I'm using yarn workspaces to structure a monorepo style project. I recently upgraded to yarn v4 and am running into issues with running drizzle-kit seemingly not able to detect drizzle-rom when run ...
callmetwan's user avatar
  • 1,360
1 vote
1 answer
77 views

I want to install two different versions of Vue.js in my project and I came to a dead end regarding multiple node_modules directories. The problem is that up until now I used npm and single package....
The50's user avatar
  • 1,198
0 votes
1 answer
803 views

I use yarn workspases and one of workspaces threw this error: file:///home/username/Projects/projectName/node_modules/tinypool/dist/chunk-E2J7JLFN.js:46 throw error; ^ Error [...
Илья Хоришко's user avatar
0 votes
1 answer
172 views

I have a folder structure like this: root/ packages/ snackbar/ src/ example/ src/ babel.config.js metro.config.js package.json tsconfig.json ...
flix's user avatar
  • 1,983
0 votes
0 answers
88 views

I have a monorepo with frontend, backend and my-common yarn workspaces. +-- node_modules +-- package.json +-- tsconfig.json +-- buildspec.yml +-- my-common | +-- package.json | +-- ...
Eugene Tusmenko's user avatar
1 vote
1 answer
359 views

I'm working on a React+vite application that uses yarn pnp. It worked fine, but now I'm having the following issue concerning yarn when I start the application (yarn dev or yarn build). Error: Unable ...
João Beirão's user avatar
0 votes
1 answer
403 views

I need to upgrade yarn 1.22.x to 3.8.3 in azure build pipeline. I have modified the pipeline yml file: - task: NodeTool@0 inputs: versionSpec: '16.x' checkLatest: true ...
Arun Singh's user avatar
0 votes
1 answer
309 views

I'm using a monorepo with Yarn workspaces as a means to manage a dozen or so WordPress plugins. Each plugin needs to be able to build (webpack) and deploy independently. The issue happens occasionally ...
m_i_rite's user avatar
0 votes
1 answer
242 views

I do have to work with a large Yarn PnP mono repo (~30 packages and 3 micro apps). One of the packages (package-b) is using an external npm package package-a (which is using npm as a package manager) ...
mitchkman's user avatar
  • 6,710
1 vote
0 answers
212 views

Given a yarn workspaces with an app and multiple libraries all built with webpack 5, how do I debug with WebStorm or IntelliJ so that I can hit a breakpoint in a library? I'm hosting with webpack-dev-...
Novaterata's user avatar
  • 4,903
0 votes
0 answers
321 views

I've inherited a React Native project which built happily about 8 months ago. Now I have come back to it, I can't get it to build. Being a near incompetent on Apple platform development (I work mostly ...
ZG862's user avatar
  • 1
3 votes
0 answers
231 views

Need some help declaring global modules using yarn workspaces. Can't figure out where to put declarations so they work as expected File structure: root/ ├── app/ ├── common/ │ ├── assets/ │ │ ├──...
Karolis's user avatar
  • 76
2 votes
1 answer
917 views

I'm using yarn workspace to develop a library that will be published on NPM. The library is dependent on a private core package in the same workspace. My understanding is that the workspace should ...
Jake Loew's user avatar
  • 225
0 votes
0 answers
74 views

For example if someone has a GitHub repo that doesn't contain a pages or app directory, when you try to run npx next dev, you will get the following error. ▲ Next.js 14.2.3 - Local: http://...
andypicks's user avatar
0 votes
0 answers
989 views

I have just started working on a reactjs application, and found that I cannot run the app using yarn on localhost at all, as it hangs after reaching "Linking dependencies". I am running this ...
Excalibur 11's user avatar
1 vote
0 answers
76 views

I have the following structure my-package package.json packages backend package.json frontend package.json vite.config.ts shared package.json src TimeRange.ts my-package/package.json { "...
Mederic's user avatar
  • 2,054
2 votes
0 answers
164 views

Context Within a workspace (Bun/Yarn) I have a package server with this TS config: "compilerOptions": { "baseUrl": "./src", "paths": { "~/*&...
sh03's user avatar
  • 76.5k
1 vote
0 answers
116 views

We want to move our RN project to Yarn Workspaces. We currently have two different .babelrc.json files for two different packages and from what I've found it requires adding babelrcRoots to the babel....
MikeL's user avatar
  • 2,914
1 vote
1 answer
231 views

I am currently facing an issue with queryString package using yarn. After reinstalling queryString using npm (In yarn documentation, there is no such command to add queryString package only npm). ...
Ooi Teng Hao's user avatar
0 votes
1 answer
774 views

I have a project that I migrated from a standalone npm package to a yarn package in a workspace. My config is working correctly for building and type-checking, but when I try to run yarn test, my test ...
Omar Imtiaz's user avatar
0 votes
0 answers
284 views

I am working on a monorepo using yarn workspaces. One of my packages is a react library that is published to NPM. It depends on a core package within the monorepo which is not published. I have set up ...
Jake Loew's user avatar
  • 225
4 votes
1 answer
2k views

I am working on a monorepo using yarn workspaces. One of my packages is a react library that is published to NPM. It depends on another package within the monorepo which is not published to the NPM. ...
Jake Loew's user avatar
  • 225
0 votes
2 answers
183 views

I have a project I am working on and I accidentally downloaded my packages with yarn after running yarn in the terminal. I deleted the new node_modules folder and then ran yarn list -depth 0 and then ...
MrGod1y's user avatar
  • 17
10 votes
3 answers
17k views

My project is using [email protected] and node 16.x.x i want to update my node version to node 20 and i new that node 20 works with [email protected]. When i went to yarn page migration https://yarnpkg.com/...
Sohaib Najjar's user avatar
0 votes
1 answer
52 views

I use a workspace into my app "workspaces": [ "firstapp/web", "secondapp" ] Into second app, into package.json I get into dependencies: "anotherapp&...
Vana's user avatar
  • 980
0 votes
1 answer
317 views

Can't find any exact info on this. I have set "type": "module" in my workspace root package.json, and I kind of assumed it would work across all workspaces, but it doesn't, and i ...
Werlious's user avatar
  • 593
5 votes
1 answer
554 views

I have a large JavaScript (TypeScript) monorepo with many subpackages: root/ package.json packages/ packageA/ package.json packageB/ package.json ... packageZ/ ...
Sasgorilla's user avatar
  • 3,290
1 vote
0 answers
159 views

I have a typescript monorepo managed by nx. There are about 122 projects in this repo and all written in typescript nodejs. With yarn4 pnp enabled https://yarnpkg.com/features/pnp. There are some 3rd ...
Joey Yi Zhao's user avatar
  • 43.3k
1 vote
0 answers
205 views

In Visual Studio Code, for my JavaScript Node.js project, I expect to be able to put my cursor on a require line (see first code example below) and choose Go to Definition (typically F12), and it ...
Wyck's user avatar
  • 12.1k
0 votes
1 answer
903 views

I have a monorepo project using Yarn Workspace & Typescript Folder Structure packages --- common ------ src ------ package.json ------ tsconfig.json --- app ------ src ------ package.json ------ ...
danielR2001's user avatar
2 votes
0 answers
119 views

I'm trying to create a new web project that consists of 3 npm packages: 2 UI packages, and 1 shared code package. All 3 packages are REACT + TS vite packages. I am trying to set this up using npm / ...
kohloth's user avatar
  • 956
1 vote
1 answer
606 views

After updating packages in a monorepo (using Turborepo by Vercel) so that all match the same versions, I noticed that there are still differing versions for many packages in yarn.lock file. For ...
Qwerty's user avatar
  • 32.5k
1 vote
0 answers
780 views

We have a monorepo with yarn workspaces that uses nx to manage targets (=package.json scripts) and it runs jest by default for test target (defined with jest plugin in targetDefaults) However, in 1 ...
Moshisho's user avatar
  • 3,051
1 vote
0 answers
324 views

I'm working on a small monorepo project, using Yarn 4 workspaces with TypeScript. I've mostly got it working, but I've hit an edge(ish) case with some import paths. I have a common library in this ...
Martin Wedvich's user avatar
1 vote
0 answers
102 views

Recently I updated nextjs to "next": "^13.5.6",, which broke storybook. This was subsequently fixed and therefore the solution is to also upgrade all storybook related packages. ...
Qwerty's user avatar
  • 32.5k
4 votes
0 answers
354 views

We are setting up a new app, and we'd like to use a yarn monorepo. Each package in the repo is it's own app. We'd like to be able to deploy each app individually instead of the whole code base to each ...
LoneWolfPR's user avatar
  • 4,121
1 vote
0 answers
273 views

I'm using Yarn workspaces to link my packages in a TypeScript monorepo. Everything works fine, every package has its own tsconfig and I'm using references and composite in those tsconfigs. I can ...
Vitor EL's user avatar
  • 595

1
2 3 4 5
11