Organize multiple repositories into monolith structure
yarn add repo-genesis
const { init } = require("repo-genesis");
await init(config);
Full test: repo.test.js
Full config: sample.config.js
const config = {
provider: "myProviderAlias",
repospacePath: path.join(__dirname, "../sandbox"),
repositories: [
{
servexyz: "npm-starter"
},
{
servexyz: "cli-starter"
}
]
};
Provider
-
Public
repos? Provider isoptional
-
Private
repos? Provider isrequired
Read more about defining config here
- 1:many repo locations without using submodules
- Easy-to-update layout without moving massive files
- Consistency for entire time with option for individual layouts
- Monolith convenience with micro lib modularity
-
Config
Creating config used by init
-
3rd party API's
-
Todos by release version & questions
-
Thinking about the API
-
Errors & notes about fixing them