avo 3.2.5 → 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.
- package/cli.js +2 -2
- package/package.json +3 -3
package/cli.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
1
2
|
import ora from 'ora';
|
|
2
3
|
import chalk from 'chalk';
|
|
3
|
-
import
|
|
4
|
+
import { Minimatch } from 'minimatch';
|
|
4
5
|
import dateFns from 'date-fns';
|
|
5
6
|
import fs from 'fs';
|
|
6
7
|
import http from 'http';
|
|
@@ -31,7 +32,6 @@ import httpShutdown from 'http-shutdown';
|
|
|
31
32
|
import fuzzypath from 'inquirer-fuzzy-path';
|
|
32
33
|
import Avo from './Avo.js';
|
|
33
34
|
const pkg = JSON.parse(fs.readFileSync(new URL('package.json', import.meta.url), 'utf-8'));
|
|
34
|
-
const { Minimatch } = minimatch;
|
|
35
35
|
/// //////////////////////////////////////////////////////////////////////
|
|
36
36
|
// LOGGING
|
|
37
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.
|
|
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": "^
|
|
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.
|
|
67
|
+
"prettier": "2.8.3",
|
|
68
68
|
"typescript": "^4.7.4"
|
|
69
69
|
}
|
|
70
70
|
}
|