@momo-kits/uploader 0.152.1-beta.7 → 0.152.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/publish.sh +0 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@momo-kits/uploader",
3
- "version": "0.152.1-beta.7",
3
+ "version": "0.152.3",
4
4
  "private": false,
5
5
  "main": "index.tsx",
6
6
  "peerDependencies": {
package/publish.sh CHANGED
@@ -6,11 +6,8 @@ if [ "$1" == "stable" ]; then
6
6
  npm version patch
7
7
  npm publish --tag stable --access=public
8
8
  elif [ "$1" == "latest" ]; then
9
- npm version $(npm view @momo-kits/foundation@latest version)
10
9
  npm publish --tag latest --access=public
11
10
  elif [ "$1" == "beta" ]; then
12
- npm version $(npm view @momo-kits/uploader@beta version)
13
- npm version prerelease --preid=beta
14
11
  npm publish --tag beta --access=public
15
12
  else
16
13
  npm publish --tag alpha --access=public