@neurodevs/ndx-cli 0.1.48 → 0.1.49
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/.vscode/tasks.json +19 -1
- package/package.json +2 -2
package/.vscode/tasks.json
CHANGED
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
},
|
|
40
40
|
"presentation": {
|
|
41
41
|
"reveal": "always",
|
|
42
|
-
"panel": "dedicated"
|
|
42
|
+
"panel": "dedicated"
|
|
43
43
|
},
|
|
44
44
|
"problemMatcher": []
|
|
45
45
|
},
|
|
@@ -88,6 +88,18 @@
|
|
|
88
88
|
"clear": false
|
|
89
89
|
}
|
|
90
90
|
},
|
|
91
|
+
{
|
|
92
|
+
"label": "ndx",
|
|
93
|
+
"type": "shell",
|
|
94
|
+
"command": "ndx ${input:ndxCommand}",
|
|
95
|
+
"problemMatcher": [],
|
|
96
|
+
"presentation": {
|
|
97
|
+
"reveal": "always",
|
|
98
|
+
"focus": true,
|
|
99
|
+
"panel": "new",
|
|
100
|
+
"clear": false
|
|
101
|
+
}
|
|
102
|
+
},
|
|
91
103
|
{
|
|
92
104
|
"label": "ndx",
|
|
93
105
|
"type": "shell",
|
|
@@ -125,6 +137,12 @@
|
|
|
125
137
|
"description": "ndx command",
|
|
126
138
|
"default": "create.impl",
|
|
127
139
|
"type": "promptString"
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
"id": "ndxCommand",
|
|
143
|
+
"description": "ndx command",
|
|
144
|
+
"default": "create.module",
|
|
145
|
+
"type": "promptString"
|
|
128
146
|
}
|
|
129
147
|
]
|
|
130
148
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@neurodevs/ndx-cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.49",
|
|
4
4
|
"description": "CLI tools for the Neurodevs ecosystem.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"nodejs",
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"watch.tsc": "tsc -w"
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
|
-
"@neurodevs/meta-node": "^0.10.
|
|
51
|
+
"@neurodevs/meta-node": "^0.10.15",
|
|
52
52
|
"prompts": "^2.4.2"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|