mirror of
https://github.com/silkimen/cordova-plugin-advanced-http.git
synced 2026-01-31 00:00:03 +08:00
11 lines
244 B
Bash
Executable File
11 lines
244 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
VERSION=$(node -e "console.log(require('./package.json').version)")
|
|
|
|
./scripts/update-tough-cookie.sh
|
|
node ./scripts/update-plugin-xml.js $VERSION
|
|
git commit -a -m "release v$VERSION"
|
|
git tag "v$VERSION"
|
|
npm publish
|