@momo-kits/calculator-keyboard 0.112.1-rn76.6 → 0.113.0-rc.2

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 +19 -19
  2. package/publish.sh +5 -5
package/package.json CHANGED
@@ -1,20 +1,20 @@
1
1
  {
2
- "name": "@momo-kits/calculator-keyboard",
3
- "version": "0.112.1-rn76.6",
4
- "private": false,
5
- "main": "index.tsx",
6
- "peerDependencies": {
7
- "@momo-kits/foundation": "latest",
8
- "react": "16.9.0",
9
- "react-native": ">=0.55",
10
- "prop-types": "^15.7.2"
11
- },
12
- "devDependencies": {
13
- "@momo-platform/versions": "4.1.11"
14
- },
15
- "license": "MoMo",
16
- "publishConfig": {
17
- "registry": "https://registry.npmjs.org/"
18
- },
19
- "dependencies": {}
20
- }
2
+ "name": "@momo-kits/calculator-keyboard",
3
+ "version": "0.113.0-rc.2",
4
+ "private": false,
5
+ "main": "index.tsx",
6
+ "peerDependencies": {
7
+ "@momo-kits/foundation": "latest",
8
+ "react": "16.9.0",
9
+ "react-native": ">=0.55",
10
+ "prop-types": "^15.7.2"
11
+ },
12
+ "devDependencies": {
13
+ "@momo-platform/versions": "4.1.11"
14
+ },
15
+ "license": "MoMo",
16
+ "publishConfig": {
17
+ "registry": "https://registry.npmjs.org/"
18
+ },
19
+ "dependencies": {}
20
+ }
package/publish.sh CHANGED
@@ -8,15 +8,15 @@ cd dist
8
8
 
9
9
 
10
10
  if [ "$1" == "stable" ]; then
11
- ##npm version $(npm view @momo-kits/foundation@stable version)
12
- #npm version patch
11
+ npm version $(npm view @momo-kits/foundation@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/foundation@latest version)
15
+ npm version $(npm view @momo-kits/foundation@latest version)
16
16
  npm publish --tag latest --access=public
17
17
  else
18
- ##npm version $(npm view @momo-kits/avatar@beta version)
19
- #npm version prerelease --preid=beta
18
+ npm version $(npm view @momo-kits/avatar@beta version)
19
+ npm version prerelease --preid=beta
20
20
  npm publish --tag beta --access=public
21
21
  fi
22
22