https://github.com/eighty4/databases
https://github.com/eighty4/databases
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/eighty4/databases
- Owner: eighty4
- License: bsd-3-clause
- Created: 2023-11-18T04:11:23.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-12-17T04:35:45.000Z (over 1 year ago)
- Last Synced: 2024-12-17T05:32:39.751Z (over 1 year ago)
- Language: TypeScript
- Size: 70.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# @eighty4/databases
A JavaScript library for managing local development databases.
## Dev workflows
### Running locally from source
Chaining the `build` and `dev` scripts will run from local source via the CLI entrypoint.
```shell
pnpm build && pnpm dev -h
```
### Verifying code changes
The `ci_verify.sh` script will verify code changes as CI builds would.
```shell
./ci_verify.sh
```
### Interactive update with `pnpm`
The update command can be used interactively and recursively to upgrade project dependencies:
```shell
pnpm update --interactive --latest --recursive
```