Sample monorepo setup with yarn workspaces, typescript, and lerna.
This repository uses the latest webpack@5.
If your infrastructure (loaders/plugins) still requires webpack@4, you can downgrade:
webpackto^4.46.0html-webpack-pluginto^4.5.1source-map-loaderto^1.1.3
-
Monorepo is installed using yarn.
- Packages are automatically linked together, meaning you can do cross-package work within the repo.
devDependenciesare common, and only appear in the rootpackage.json. Easier to manage and upgrade.- Each package has its own
scriptsanddependencies. They are being installed in the rootnode_modules, using the same deduping mechanismyarnuses for single packages. - Adding new packages is as simple as dropping an existing package in the
packagesfolder, and re-runningyarn.
-
Monorepo scripts are being executed using lerna.
lerna publish- multi-package publishing.lerna run- running package scripts.lerna updated- shows changed packages (since last tag).
-
Sources and tests are written in strict TypeScript.
- Common base
tsconfig.base.json.
- Common base
-
Testing is done using mocha and chai.
- Light, battle-tested, projects with few dependencies.
- Can be bundled and used in the browser.
-
@sample/components
- React components library.
-
@sample/app
- React application.
- Uses the
@sample/componentspackage (also inside monorepo).
-
@sample/server
- Express application.
- Uses the
@sample/apppackage (also inside monorepo). - Listens on http://localhost:3000 (client only rendering) http://localhost:3000/server (SSR rendering).
.github // CI flow configuration (GitHub Actions)
packages/
some-package/
src/
index.ts
tsconfig.json // folder specific config, built to "dist
test/
test.spec.ts
tsconfig.json // folder specific config, built to "dist/test"
LICENSE // license file. included in npm artifact
package.json // package-specific deps and scripts
README.md // shown in npmjs.com. included in npm artifact
.eslintignore // eslint (linter) ignored directories/files
.eslintrc // eslint (linter) configuration
.gitignore // github's default node gitignore with customizations
.mocharc.js // mocha (test runner) configuration
lerna.json // lerna configuration
LICENSE // root license file. picked up by github
package.json // common dev deps and workspace-wide scripts
README.md // workspace-wide information. shown in github
tsconfig.base.json // common typescript configuration
tsconfig.json // solution-style root typescript configuration
yarn.lock // the only lock file in the repo. all packages combined
This repository aims to avoid showcasing styling solutions in-depth.
There is a naive css-loader/mini-css-extract-plugin setup for the sanitize.css library being used, but the infrastructure doesn't contain any asset copying (into dist folder) and so doesn't support local css assets.
Each styling solution has its own set of infrastructure requirements.
CSS-in-JS based solutions, for example, probably won't need to worry about it at all, and work without additional setup.
Within Wix, we use Stylable, which has its own CLI (stc) to build and/or copy .st.css files into dist.
Full support for source code importing .css/.scss/.less/.whatever would require additional building. It would have to be addressed for Node as well, if one wants to execute mocha on tests importing these source files.
Traditionally, working with projects in separate repositories makes it difficult to keep versions of devDependencies aligned, as each project can specify its own devDependency versions.
Monorepos simplify this, because devDependencies are shared between all packages within the monorepo.
Taking this into account, we use the following dependency structure:
devDependenciesare placed in the rootpackage.jsondependenciesandpeerDependenciesare placed in thepackage.jsonof the relevant package requiring them, as each package is published separately
New devDependencies can be added to the root package.json using yarn:
yarn add <package name> --dev -WSome packages depend on sibling packages within the monorepo. For example, in this repo, @sample/app depends on @sample/components. This relationship is just a normal dependency, and can be described in the package.json of app like so:
"dependencies": {
"@sample/components": "<package version>"
}yarn lerna publish will publish new versions of the packages to npm.
Lerna asks for new version numbers for packages that changed since last release and their dependencies. Every package has a prepack script which automatically runs build prior to packing.
yarn lerna publish --force-publish will force a release of all packages, regardless of which ones actually changed.
Deployment of app/server assets to any actual production servers is not shown.