byreal-test 1.3.3 → 1.3.4

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/cli.js +3 -1
  2. package/package.json +1 -1
package/cli.js CHANGED
@@ -8,12 +8,14 @@ const { runSuites, listTests } = require('./src/runner');
8
8
  const { printReport, saveReport } = require('./src/reporter');
9
9
  const allSuites = require('./src/suites');
10
10
 
11
+ const { version } = require('./package.json');
12
+
11
13
  const program = new Command();
12
14
 
13
15
  program
14
16
  .name('byreal-test')
15
17
  .description('Byreal CLI test suite — validates byreal-cli commands and generates reports')
16
- .version('1.0.0');
18
+ .version(version);
17
19
 
18
20
  program
19
21
  .command('run')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "byreal-test",
3
- "version": "1.3.3",
3
+ "version": "1.3.4",
4
4
  "description": "Byreal CLI test suite - runs byreal-cli commands and generates test reports",
5
5
  "main": "cli.js",
6
6
  "bin": {