File tree Expand file tree Collapse file tree 2 files changed +19
-2
lines changed Expand file tree Collapse file tree 2 files changed +19
-2
lines changed Original file line number Diff line number Diff line change
1
+ This is the revision history of @msgpack/msgpack
2
+
3
+ TODO: changes should be logged after v1.0.0
Original file line number Diff line number Diff line change 3
3
npm run test:browser
4
4
npm run test:cover
5
5
6
- dist : test
6
+ dist : validate-git-status test
7
7
npm publish
8
8
git push origin master
9
9
git push origin master --tags
10
10
11
- .PHONY : build test dist
11
+ validate-git-status :
12
+ @ git fetch
13
+ @ if [ " ` git symbolic-ref --short HEAD` " != " master" ] ; \
14
+ then echo " Not on the master branch!\n" ; exit 1 ; \
15
+ fi
16
+ @ if [ " ` git rev-parse --short master` " != " ` git rev-parse --short origin/master` " ] ; \
17
+ then echo " Git commit mismatch in local and remote!\n" ; git status ; exit 1 ; \
18
+ fi
19
+ @ if ! git diff --exit-code --quiet ; \
20
+ then echo " Local differences!\n" ; git status ; exit 1 ; \
21
+ fi
22
+
23
+
24
+
25
+ .PHONY : test dist validate-branch
You can’t perform that action at this time.
0 commit comments