@momo-kits/stepper 0.152.1-beta.7 → 0.152.4
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.
- package/package.json +1 -1
- package/publish.sh +0 -3
package/package.json
CHANGED
package/publish.sh
CHANGED
|
@@ -5,11 +5,8 @@ if [ "$1" == "stable" ]; then
|
|
|
5
5
|
npm version patch
|
|
6
6
|
npm publish --tag stable --access=public
|
|
7
7
|
elif [ "$1" == "latest" ]; then
|
|
8
|
-
npm version $(npm view @momo-kits/foundation@latest version)
|
|
9
8
|
npm publish --tag latest --access=public
|
|
10
9
|
elif [ "$1" == "beta" ]; then
|
|
11
|
-
npm version $(npm view @momo-kits/stepper@beta version)
|
|
12
|
-
npm version prerelease --preid=beta
|
|
13
10
|
npm publish --tag beta --access=public
|
|
14
11
|
else
|
|
15
12
|
npm publish --tag alpha --access=public
|