We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5583fe commit c94e9c4Copy full SHA for c94e9c4
.gitignore
@@ -5,4 +5,3 @@ npm-debug.log
5
build
6
.idea
7
index.html
8
-package-lock.json
_release.sh
@@ -6,7 +6,13 @@ npm install
# check outdated dependencies
npm outdated
9
-# version input
+# execute tests
10
+npm run test
11
+
12
+# prepare distribution
13
+npm run build
14
15
+# version prompt
16
echo Enter release version:
17
read version
18
if [ "$version" = "" ]; then
@@ -15,8 +21,6 @@ if [ "$version" = "" ]; then
21
fi
22
23
# start release
-npm run test
19
-npm run build
20
24
git commit -a -m "Prepare for release $version"
25
npm config set tag-version-prefix ''
26
npm version $version -m "Release $version"
0 commit comments