Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yyz945947732/generator-stupid
generating a project with tsup, biome, vitest
https://github.com/yyz945947732/generator-stupid
biome generator tsup vitest yeoman-generator
Last synced: about 2 months ago
JSON representation
generating a project with tsup, biome, vitest
- Host: GitHub
- URL: https://github.com/yyz945947732/generator-stupid
- Owner: yyz945947732
- License: mit
- Created: 2023-09-22T12:54:04.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-01-17T14:58:39.000Z (12 months ago)
- Last Synced: 2024-01-23T11:06:31.170Z (12 months ago)
- Topics: biome, generator, tsup, vitest, yeoman-generator
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/generator-stupid
- Size: 32.2 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# generator-stupid
> generating a project with tsup, biome, vitest
## Features
generating a tiny project use:
- 🚀 [vitest](https://vitest.dev/) for test.
- 🦌 [biome](https://biomejs.dev/) for format, lint.
- 📦 [tsup](https://tsup.egoist.dev/) for build.## Installation
First, install [Yeoman](http://yeoman.io) and generator-stupid using [npm](https://www.npmjs.com/) (we assume you have pre-installed [node.js](https://nodejs.org/)).
```bash
npm install -g yo generator-stupid
```Then generate your new project:
```bash
yo stupid
```## What do you get?
Scaffolds out a complete generator directory structure for you:
```text
.
├── .github/
│ └── workflows/
│ └── cov.yml
├── src/
│ └── index.ts
├── test/
│  └── index.test.ts
├── types/
│ └── index.d.tsÂ
├── .editorconfig
├── .gitignore
├── biome.json
├── LICENSE
├── package.json
├── README.md
├── tsconfig.json
├── tsup.config.ts
└── vitest.config.ts
```## LICENSE
[MIT](https://github.com/yyz945947732/generator-stupid/blob/master/LICENSE)