@momo-kits/title 0.92.14-rc.1 → 0.92.14

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 +6 -6
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@momo-kits/title",
3
- "version": "0.92.14-rc.1",
3
+ "version": "0.92.14",
4
4
  "private": false,
5
5
  "main": "index.tsx",
6
6
  "dependencies": {},
package/publish.sh CHANGED
@@ -8,16 +8,16 @@ cd dist
8
8
 
9
9
 
10
10
  if [ "$1" == "stable" ]; then
11
- #npm version $(npm view @momo-kits/title@stable version)
12
- npm version patch
11
+ # npm version $(npm view @momo-kits/title@stable version)
12
+ # npm version patch
13
13
  npm publish --tag stable --access=public
14
14
  elif [ "$1" == "latest" ]; then
15
- #npm version $(npm view @momo-kits/title@latest version)
16
- #npm version prerelease --preid=rc
15
+ npm version $(npm view @momo-kits/title@latest version)
16
+ npm version prerelease --preid=rc
17
17
  npm publish --tag latest --access=public
18
18
  else
19
- #npm version $(npm view @momo-kits/title@beta version)
20
- #npm version prerelease --preid=beta
19
+ npm version $(npm view @momo-kits/title@beta version)
20
+ npm version prerelease --preid=beta
21
21
  npm publish --tag beta --access=public
22
22
  fi
23
23