mirror of
https://github.com/tabler/tabler.git
synced 2025-12-21 09:24:24 +04:00
16 lines
231 B
Bash
Executable File
16 lines
231 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
version=0.0.32
|
|
|
|
echo "Version $version"
|
|
|
|
npm run dist
|
|
git add .
|
|
git commit -am "version $version"
|
|
npm version $version
|
|
git push origin master && git push origin master --tags
|
|
|
|
npm run publish-dist
|
|
|
|
npm publish
|