Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/eddiecorrigall/database-revisions
A lightweight database migration tool for SQL and no-SQL databases
https://github.com/eddiecorrigall/database-revisions
database-management devops-tools migration-tool mongodb nodejs nosql postgresql revision-history sql
Last synced: 3 months ago
JSON representation
A lightweight database migration tool for SQL and no-SQL databases
- Host: GitHub
- URL: https://github.com/eddiecorrigall/database-revisions
- Owner: eddiecorrigall
- License: mit
- Created: 2023-01-09T03:24:45.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2023-01-31T14:33:02.000Z (almost 2 years ago)
- Last Synced: 2024-10-05T02:34:22.316Z (3 months ago)
- Topics: database-management, devops-tools, migration-tool, mongodb, nodejs, nosql, postgresql, revision-history, sql
- Language: TypeScript
- Homepage:
- Size: 342 KB
- Stars: 5
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README-publish.md
Awesome Lists containing this project
README
# Publishing to npmjs.com
These are notes to publish the project to the community.
```bash
# Login to npmjs.com
npm adduser# Bump package.json version as patch, commit change
npm version patch# Push changes to github.com
git push
```Check GitHub Actions for build status OK
```bash
# Delete build folder
npm run clean# Build distribution
npm run build# Publish to npmjs.com
npm publish --access public
```