@neurodevs/ndx-cli 0.1.123 → 0.1.125
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.
|
@@ -3,9 +3,9 @@ import { mkdir, readFile, writeFile } from 'node:fs/promises';
|
|
|
3
3
|
import prompts from 'prompts';
|
|
4
4
|
export default class CliCommandRunner implements CommandRunner {
|
|
5
5
|
static Class?: CommandRunnerConstructor;
|
|
6
|
-
static error: (
|
|
6
|
+
static error: (...data: any[]) => void;
|
|
7
7
|
static exec: typeof execSync.__promisify__;
|
|
8
|
-
static log: (
|
|
8
|
+
static log: (...data: any[]) => void;
|
|
9
9
|
static mkdir: typeof mkdir;
|
|
10
10
|
static prompts: typeof prompts;
|
|
11
11
|
static readFile: typeof readFile;
|
package/eslint.config.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import
|
|
1
|
+
import eslintConfigNdx from '@neurodevs/eslint-config-ndx'
|
|
2
2
|
|
|
3
|
-
export default
|
|
3
|
+
export default eslintConfigNdx
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@neurodevs/ndx-cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.125",
|
|
4
4
|
"description": "CLI tools for the Neurodevs ecosystem.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"nodejs",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"watch.build.dev": "tsc-watch --sourceMap --onCompilationComplete 'yarn run build.copy-files'"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@neurodevs/meta-node": "^0.19.
|
|
45
|
+
"@neurodevs/meta-node": "^0.19.23",
|
|
46
46
|
"prompts": "^2.4.2"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
@@ -51,15 +51,10 @@
|
|
|
51
51
|
"@neurodevs/generate-id": "^1.1.2",
|
|
52
52
|
"@neurodevs/node-tdd": "^0.2.5",
|
|
53
53
|
"@neurodevs/prettier-config-ndx": "^1.0.1",
|
|
54
|
-
"@types/node": "^24.2.1",
|
|
55
54
|
"@types/prompts": "^2.4.9",
|
|
56
|
-
"chokidar-cli": "^3.0.0",
|
|
57
|
-
"eslint": "^9.33.0",
|
|
58
|
-
"eslint-config-spruce": "^11.2.26",
|
|
59
55
|
"jest": "^30.0.5",
|
|
60
56
|
"jest-circus": "^30.0.5",
|
|
61
|
-
"prettier": "^3.
|
|
62
|
-
"ts-node": "^10.9.2",
|
|
57
|
+
"prettier": "^3.8.1",
|
|
63
58
|
"tsc-watch": "^7.1.1",
|
|
64
59
|
"typescript": "^5.9.2"
|
|
65
60
|
},
|