Hello, I have my project structured by using dire...
# typescript
c
Hello, I have my project structured by using directories, something like this:
Copy code
└── infrastructure
    └── network
        ├── dev
        ├── prod
        └── stage
            ├── 01-host-project
            │   ├── Pulumi.stage.yaml
            │   └── Pulumi.yaml
            └── 02-host-vpc
                ├── Pulumi.stage.yaml
                └── Pulumi.yaml
Is it possible to have
package.json
and
node_module
global on let say this level <
stage
folder>
Copy code
└── infrastructure
    └── network
        └── stage
So
npm install
is done only once?
s
check out Lerna
👍 1
g
or yarn workspaces
👍 1
or just
ln -s
c
Thanks! Used yarn workspaces. Still figuring out how Lerna can help?