Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/lukeshay/npm
- Owner: lukeshay
- License: mit
- Created: 2021-07-26T22:13:51.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-12-01T18:45:06.000Z (11 months ago)
- Last Synced: 2024-10-31T14:30:15.117Z (8 days ago)
- Language: JavaScript
- Homepage: https://www.npmjs.com/~lukeshay
- Size: 4.2 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
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 |