find-cypress-specs 1.12.0 → 1.12.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 (2) hide show
  1. package/bin/find.js +1 -1
  2. package/package.json +2 -1
package/bin/find.js CHANGED
@@ -15,7 +15,7 @@ const args = arg({
15
15
  '--json': Boolean,
16
16
  // find the specs that have changed against this Git branch
17
17
  '--branch': String,
18
- '--count': Number,
18
+ '--count': Boolean,
19
19
 
20
20
  // aliases
21
21
  '-n': '--names',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "find-cypress-specs",
3
- "version": "1.12.0",
3
+ "version": "1.12.1",
4
4
  "description": "Find Cypress spec files using the config settings",
5
5
  "main": "src",
6
6
  "files": [
@@ -21,6 +21,7 @@
21
21
  "demo-names-and-tags-json": "node ./bin/find --names --tags --json",
22
22
  "demo-names-json": "node ./bin/find --names --json",
23
23
  "print-changed-specs": "node ./bin/find --branch main",
24
+ "count-changed-specs": "node ./bin/find --branch main --count",
24
25
  "semantic-release": "semantic-release"
25
26
  },
26
27
  "repository": {