# Isolated Mode Feb 10, 2022
### Attendees
- vincentbailly
- fritzy
- lukekarrys
- nlf
- darcyclarke
## Agenda
- Demo
- `shrinkwrap.json`
- seems very straightforward to handle
- let's support it
- Singleton pattern
- Come up with possible examples and patterns to avoid breaking changes
- Bundle Dependencies
## Unresolved / Bikshedding
#### What does pnpm do for bundleddeps?
- does not manage bundleddeps
#### Bundled Dependencies Options
1. leave them nested in the root of the package
1.1 hoisted
1.2 unhoisted
1. repackage bundledeps
1. don't support them at all (ie. bail & leverage the `.store`)
1. look at the root package.json and if using `bundledDependencies` just reify them as hoisted, since that's needed as per the bundle deps contract (publishing, etc)
### Parking Lot
- ...
### References
- https://github.com/npm/rfcs/pull/436
- https://github.com/pnpm/pnpm/issues/844