@gettrace/cli 1.1.1 → 1.1.2

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/dist/index.js +1 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -11,7 +11,7 @@ import * as path from 'path';
11
11
  import { exec } from 'child_process';
12
12
  import { promisify } from 'util';
13
13
  const execAsync = promisify(exec);
14
- const VERSION = '1.1.0';
14
+ const VERSION = '1.1.2';
15
15
  /** Levenshtein distance for fuzzy block matching */
16
16
  function levenshtein(a, b) {
17
17
  if (a === '' || b === '')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gettrace/cli",
3
- "version": "1.1.1",
3
+ "version": "1.1.2",
4
4
  "description": "Trace IDE Bridge for connecting local filesystem to Trace browser extensions.",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",