Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/lukeshay/npm

Repo containing my NPM packages
https://github.com/lukeshay/npm

Last synced: about 7 hours ago
JSON representation

Repo containing my NPM packages

Awesome Lists containing this project

README

        

# @lshay packages

This repo contains various NPM packages that I use. I started building this because I noticed a lot of things that I would repeat in all of my projects. I am not really building this for other people to use but feel free to use them and submit pull requests!

If anybody finds any bugs, please create an issue and submit a PR if you would like.

## Commands

| Command (`npm run `) | Description |
| ------------------------- | -------------------------------------------------------------------------------------------- |
| prettier | Runs `prettier --check` on all files in the repo that are not in the .gitignore |
| prettier:fix | Runs `prettier --write` on all files in the repo that are not in the .gitignore |
| lint | Runs `eslint` on JavaScript, TypeScript, and JSON files that are not in the .gitignore |
| lint:fix | Runs `eslint --fix` on JavaScript, TypeScript, and JSON files that are not in the .gitignore |
| build | Runs `tsdx build` on all packages |
| test | Runs `tsdx test` on all packages |
| clean | Runs `rimraf` on dist/ and .jest-\* |
| check | Runs all the commands that are used to validate the code |
| release | Bumps versions of packages |
| npm | Publishes packages |
| bootstrap | Setups repo for the first time using lerna |