# make-repo

> CLI to generate Git repos of different flavors

Latest version **0.0.1** (published 2022-04-27) · MIT license · 0 weekly downloads

## Install

```sh
npm install make-repo
pnpm add make-repo
yarn add make-repo
bun add make-repo
```

Provides the command `make-repo`.

## Health

**Score 20/100 (F)** — status: abandoned.

Positive: has types; no vulnerabilities.

Warnings: low downloads; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.1 |
| Published | 2022-04-27 |
| First published | 2022-04-27 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | CommonJS |
| Dependencies | 4 |
| Unpacked size | 26.9 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Naresh Bhatia |
| Maintainers | nareshbhatia |

## Links

- npm: https://www.npmjs.com/package/make-repo
- Repository: https://github.com/nareshbhatia/make-repo
- Homepage: https://github.com/nareshbhatia/make-repo#readme
- Issues: https://github.com/nareshbhatia/make-repo/issues
- npm.io page: https://npm.io/package/make-repo

## Dependencies (4)

- [hygen](https://npm.io/package/hygen.md) ^6.2.0
- [rimraf](https://npm.io/package/rimraf.md) ^3.0.2
- [prettier](https://npm.io/package/prettier.md) ^2.6.2
- [typescript](https://npm.io/package/typescript.md) ^4.6.3

## Recent versions

- 0.0.1 (latest) — 2022-04-27

## README

# make-repo

CLI to generate Git repos of different flavors

## Development Build

Add a second argument '.tmp' to line 10 in src/index.ts. This should never be
checked in.

```bash
# install dependencies
npm install

# compile /src to /dist
npm run build

# generate a new repo in .tmp
npm run generate turbo new

# test the generated repo
cd .tmp/my-repo
npm install
```

## Production Build

Remove the second argument '.tmp' from line 10 in src/index.ts

```bash
# compile /src to /dist
npm run build

# publish the package to npm
# (alternatively use npm link to publish locally)
npm publish

# run the generator
make-repo turbo new

# test the generated repo
cd my-repo
npm install

# If you have published the plugin locally, then you can unpublish it like this:
npm unlink -g make-repo
```

---
_Source: https://npm.io/package/make-repo · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
