A lerna project for managing monorepo using lerna
npm install lerna-projen

This is a library to use manage mono repositories using projen.
To create a new project, run the following command and follow the instructions:
```
console
$ mkdir my-project
$ cd my-project
$ git init
$ npx projen new --from lerna-projen lerna-ts-project
š¤ Synthesizing project...
...
The project type can be anything to start with, then in the projenrc file, initiate a lerna project and add all of the sub normal projen project to the lerna project.
javascript
import {LernaTypescriptProject} from 'lerna-projen';
import { TypeScriptProject } from 'projen';const parentProject = new LernaTypescriptProject({
name: 'my-parent-project',
...
});
const firstProject = new TypeScriptProject({
name: 'my-first-project',
parent: parentProject,
...
});
parentProject.addSubProject(firstProject);
parentProject.synth()
`Getting started JS
To create a new project, run the following command and follow the instructions:
`
console
$ mkdir my-project
$ cd my-project
$ git init
$ npx projen new --from lerna-projen lerna-project
š¤ Synthesizing project...
...
`The project type can be anything to start with, then in the
projenrc file, initiate a lerna project and add all of the sub normal projen project to the lerna project.$3
`javascript
const { LernaProject } = require('lerna-projen');
const { TypeScriptProject } = require('projen');const parentProject = new LernaProject({
name: 'my-parent-project',
...
});
const firstProject = new TypeScriptProject({
name: 'my-first-project',
parent: parentProject,
...
});
parentProject.addSubProject(firstProject);
parentProject.synth()
``The rest of the process is taken care of by projen. All of the scripts on the parent project are chained by running the same command from the sub project using lerna.