git-semver-tags 3.0.0 → 3.0.1

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 (3) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/cli.js +18 -2
  3. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [3.0.1](https://github.com/conventional-changelog/conventional-changelog/compare/git-semver-tags@3.0.0...git-semver-tags@3.0.1) (2019-11-14)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * add types for cli flags ([#551](https://github.com/conventional-changelog/conventional-changelog/issues/551)) ([bf1d64a](https://github.com/conventional-changelog/conventional-changelog/commit/bf1d64aeaf8f262d4b2beec02d2aebb78df7343b))
12
+
13
+
14
+
15
+
16
+
6
17
  # [3.0.0](https://github.com/conventional-changelog/conventional-changelog/compare/git-semver-tags@2.0.3...git-semver-tags@3.0.0) (2019-07-29)
7
18
 
8
19
 
package/cli.js CHANGED
@@ -10,8 +10,24 @@ var args = meow(`
10
10
  --cwd path to git repository to be searched
11
11
  --lerna parse lerna style git tags
12
12
  --package <name> when listing lerna style tags, filter by a package
13
- --tagPrefix <prefix> prefix to remove from the tags during their processing`
14
- )
13
+ --tagPrefix <prefix> prefix to remove from the tags during their processing`,
14
+ {
15
+ booleanDefault: undefined,
16
+ flags: {
17
+ cwd: {
18
+ type: 'string'
19
+ },
20
+ lerna: {
21
+ type: 'boolean'
22
+ },
23
+ package: {
24
+ type: 'string'
25
+ },
26
+ tagPrefix: {
27
+ type: 'string'
28
+ }
29
+ }
30
+ })
15
31
 
16
32
  gitSemverTags({
17
33
  lernaTags: args.flags.lerna,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "git-semver-tags",
3
- "version": "3.0.0",
3
+ "version": "3.0.1",
4
4
  "description": "Get all git semver tags of your repository in reverse chronological order",
5
5
  "bugs": {
6
6
  "url": "https://github.com/conventional-changelog/conventional-changelog/issues"
@@ -32,7 +32,7 @@
32
32
  "git"
33
33
  ],
34
34
  "dependencies": {
35
- "meow": "^4.0.0",
35
+ "meow": "^5.0.0",
36
36
  "semver": "^6.0.0"
37
37
  },
38
38
  "scripts": {
@@ -41,5 +41,5 @@
41
41
  "bin": {
42
42
  "git-semver-tags": "cli.js"
43
43
  },
44
- "gitHead": "dadbbf8b1acbe4b3a8f345633bde3f4a4ad0bea4"
44
+ "gitHead": "79217815a7ce5f3d3f833961ce9a14bd454e5789"
45
45
  }