git-rev-label 2.20.17 → 2.24.21

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/git-rev-label +3 -2
  2. package/package.json +26 -26
package/git-rev-label CHANGED
@@ -21,8 +21,8 @@ shopt -s inherit_errexit
21
21
  shopt -s lastpipe
22
22
  shopt -s expand_aliases
23
23
 
24
- VERSION=master-c20-g407149b-b17
25
- VERSION_NPM=2.20.17
24
+ VERSION=master-c24-gd8537d1-b21
25
+ VERSION_NPM=2.24.21
26
26
 
27
27
  ## todo maybe use utils.bash from autorsync
28
28
  function echomsg { echo $'\e[1;37m'"$@"$'\e[0m'; }
@@ -168,6 +168,7 @@ while (( $# > 0 )) ;do
168
168
  -v() { --variables "$@"; }
169
169
  --vars(){ --variables "$@"; }
170
170
  ;;
171
+ # --format) ##todo parse next argument as set_with_warn format "$1" via set_next_with_warn format
171
172
  --format=*) set_with_warn format "${1##--format=}";;
172
173
  --format-file=*) set_with_warn format "$(cat "${1##--format-file=}")";;
173
174
  --format-from=*) set_with_warn format "$(cat "${1##--format-from=}")";;
package/package.json CHANGED
@@ -1,28 +1,28 @@
1
1
  {
2
- "name": "git-rev-label",
3
- "description": "Obtain information about Git repository revision in format like 'master-c73-gbbb6bec'",
4
- "version":"2.20.17",
5
- "homepage": "https://gitlab.com/kyb/git-rev-label",
6
- "keywords": [
7
- "git",
8
- "rev",
9
- "revision",
10
- "versioning"
11
- ],
12
- "author": {
13
- "name": "Ivan Kuvaldin",
14
- "url": "https://gitlab.com/kyb"
15
- },
16
- "repository": {
17
- "type": "git",
18
- "url": "https://gitlab.com/kyb/git-rev-label"
19
- },
20
- "main": "./git-rev-label",
21
- "bin": {
22
- "git-rev-label": "./git-rev-label"
23
- },
24
- "scripts": {
25
- "build":"./BUILD"
26
- },
27
- "license": "MIT"
2
+ "name": "git-rev-label",
3
+ "description": "Obtain information about Git repository revision in format like 'master-c73-gbbb6bec'",
4
+ "version":"2.24.21",
5
+ "homepage": "https://gitlab.com/kyb/git-rev-label",
6
+ "keywords": [
7
+ "git",
8
+ "rev",
9
+ "revision",
10
+ "versioning"
11
+ ],
12
+ "author": {
13
+ "name": "Ivan Kuvaldin",
14
+ "url": "https://gitlab.com/kyb"
15
+ },
16
+ "repository": {
17
+ "type": "git",
18
+ "url": "https://gitlab.com/kyb/git-rev-label"
19
+ },
20
+ "main": "./git-rev-label",
21
+ "bin": {
22
+ "git-rev-label": "./git-rev-label"
23
+ },
24
+ "scripts": {
25
+ "build": "./BUILD"
26
+ },
27
+ "license": "MIT"
28
28
  }