Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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
```