Skip to content
This repository has been archived by the owner on Oct 4, 2020. It is now read-only.

btilford/WEB-45225

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Repro Steps

Clone and install

git clone [email protected]:btilford/WEB-45225.git
cd WEB-45225
npx @microsoft/rush update
webstorm .

Verify @nestjs/typeorm/dist directory exists

ls -l server/node_modules/@nestjs/typeorm/ | grep dist

From the IDE @nestjs/typeorm/dist is hidden.

dist not visible

From scratch

  1. Generate project
    npm install -g @microsoft/rush @nestjs/cli
    mkdir repro
    cd repro
    rush init
    nest new
  2. Add the nest app to rush.json projects array
    {
      "shouldPublish": false,
      "packageName": "nest-app",
      "projectFolder": "nest-app"
    }
  3. Add a project that publishes it's dist directory like @nestjs/typeorm
    rush update
    rush add -p @nestjs/typeorm