You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 11, 2022. It is now read-only.
I have monorepo project. In this repo I have two folders: one with actual application and another one with component. Application depends on the component. After npm install I saw that not all dependencies were installed. In particular dependencies for the component. My Component has postinstall hook which runs tsc (typescript to be compiled) and it fails, because some packages weren't installed
How can the CLI team reproduce the problem?
Create package folder
npm init in it
add some dependencies in it, also devDependencies just to check
Windows, OS X, or Linux?:
MacOS X El Capitan 10.11.6 (15G31)
Extra note:
if I'll add npm install && tsc to postinstall it will toggle, somehow, packages installation in application - it means that all component dependencies will also appear in application node_modules