avo 3.2.6 → 3.2.7-beta.0

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 +1 -2
  2. package/package.json +3 -3
package/cli.js CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  import ora from 'ora';
3
3
  import chalk from 'chalk';
4
- import minimatch from 'minimatch';
4
+ import { Minimatch } from 'minimatch';
5
5
  import dateFns from 'date-fns';
6
6
  import fs from 'fs';
7
7
  import http from 'http';
@@ -32,7 +32,6 @@ import httpShutdown from 'http-shutdown';
32
32
  import fuzzypath from 'inquirer-fuzzy-path';
33
33
  import Avo from './Avo.js';
34
34
  const pkg = JSON.parse(fs.readFileSync(new URL('package.json', import.meta.url), 'utf-8'));
35
- const { Minimatch } = minimatch;
36
35
  /// //////////////////////////////////////////////////////////////////////
37
36
  // LOGGING
38
37
  const { cyan, gray, red, bold, underline } = chalk;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "avo",
3
- "version": "3.2.6",
3
+ "version": "3.2.7-beta.0",
4
4
  "type": "module",
5
5
  "description": "The command-line interface for Avo",
6
6
  "author": "Avo (https://www.avo.app)",
@@ -40,7 +40,7 @@
40
40
  "jsonwebtoken": "^9.0.0",
41
41
  "load-json-file": "^7.0.1",
42
42
  "log-symbols": "^5.1.0",
43
- "minimatch": "^5.1.0",
43
+ "minimatch": "^6.0.4",
44
44
  "node-avo-inspector": "^1.0.1",
45
45
  "open": "^8.4.0",
46
46
  "ora": "^6.0.1",
@@ -64,7 +64,7 @@
64
64
  "eslint-config-airbnb-base": "^15.0.0",
65
65
  "eslint-config-prettier": "^8.5.0",
66
66
  "eslint-plugin-import": "^2.25.2",
67
- "prettier": "2.8.2",
67
+ "prettier": "2.8.3",
68
68
  "typescript": "^4.7.4"
69
69
  }
70
70
  }