wekan/npm-packages/meteor-reactive-cache/release.sh
Harry Adel e241e27ca1 Add local fork of meteor-reactive-cache package
- Clone @wekanteam/meteor-reactive-cache to npm-packages/
- Add .meteorignore to exclude npm-packages from Meteor
- Update package.json to use local file path

This allows direct modification of the package for Meteor 3.0
async migration while maintaining publishability to npm.
2026-01-31 20:46:05 +02:00

25 lines
238 B
Bash
Executable file

#!/bin/bash
## 1. Copy files
npm run prepublish
npm run copy
## 2. Commit
git add --all
git commit -m "$1"
## 3. Add tags
git tag -a $1 -m "$1"
git push origin $1
git push
## 4. Publish npm package
npm publish --access public