@hubspot/cli 7.7.10-experimental.0 → 7.7.12-experimental.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.
|
@@ -40,7 +40,13 @@ async function injectAccountIdMiddleware(argv) {
|
|
|
40
40
|
const SKIP_CONFIG_VALIDATION = {
|
|
41
41
|
init: { target: true },
|
|
42
42
|
auth: { target: true },
|
|
43
|
-
mcp: {
|
|
43
|
+
mcp: {
|
|
44
|
+
target: false,
|
|
45
|
+
subCommands: {
|
|
46
|
+
setup: { target: true },
|
|
47
|
+
start: { target: true },
|
|
48
|
+
},
|
|
49
|
+
},
|
|
44
50
|
};
|
|
45
51
|
async function loadConfigMiddleware(argv) {
|
|
46
52
|
// Skip this when no command is provided
|
|
@@ -106,6 +112,13 @@ const configSubCommands = {
|
|
|
106
112
|
const SKIP_ACCOUNT_VALIDATION = {
|
|
107
113
|
init: { target: true },
|
|
108
114
|
auth: { target: true },
|
|
115
|
+
mcp: {
|
|
116
|
+
target: false,
|
|
117
|
+
subCommands: {
|
|
118
|
+
setup: { target: true },
|
|
119
|
+
start: { target: true },
|
|
120
|
+
},
|
|
121
|
+
},
|
|
109
122
|
account: accountsSubCommands,
|
|
110
123
|
accounts: accountsSubCommands,
|
|
111
124
|
sandbox: sandboxesSubCommands,
|
package/package.json
CHANGED