Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/flolu/stackoverflow-lerna-monorepo-vscode-intellisense
Lerna Monorepo Example for StackOverflow Question by @Undistraction
https://github.com/flolu/stackoverflow-lerna-monorepo-vscode-intellisense
intellisense javascript lerna monorepo vs-code yarn yarn-workspaces
Last synced: 3 months ago
JSON representation
Lerna Monorepo Example for StackOverflow Question by @Undistraction
- Host: GitHub
- URL: https://github.com/flolu/stackoverflow-lerna-monorepo-vscode-intellisense
- Owner: flolu
- Created: 2019-09-18T08:40:00.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-05-11T22:46:39.000Z (over 3 years ago)
- Last Synced: 2024-05-01T19:27:43.290Z (9 months ago)
- Topics: intellisense, javascript, lerna, monorepo, vs-code, yarn, yarn-workspaces
- Language: JavaScript
- Homepage: https://stackoverflow.com/questions/57870542
- Size: 1.96 MB
- Stars: 8
- Watchers: 3
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Javascript Monorepo with Lerna on VSCode
This repository is an example for [this](https://stackoverflow.com/questions/57870542/how-should-vscode-be-configured-to-support-a-lerna-monorepo) StackOverflow question
The monorepo makes use of a combination of `lerna` and `yarn workspaces`. You can find more information on this topic here: https://youtu.be/EoqzOEZIzhg.
## Requirements
- yarn
## Setup
```
yarn boostrap
```## Intellisense Preview
![Preview](intellisense.gif)
## File tree
```
├── lerna.json
├── package.json
├── packages
│ ├── components
│ │ ├── package.json
│ │ └── src
│ │ ├── component1.js
│ │ └── index.js
│ └── website
│ ├── package.json
│ └── src
│ └── index.js
├── README.md
└── yarn.lock
```