@hubspot/cli 7.5.11-experimental.0 → 7.7.0-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.
- package/bin/cli.js +5 -6
- package/bin/hsmcp.d.ts +2 -0
- package/bin/hsmcp.js +13 -0
- package/commands/account/auth.d.ts +3 -7
- package/commands/account/auth.js +19 -9
- package/commands/account/clean.d.ts +3 -7
- package/commands/account/clean.js +16 -9
- package/commands/account/createOverride.d.ts +3 -7
- package/commands/account/createOverride.js +23 -6
- package/commands/account/info.d.ts +3 -7
- package/commands/account/info.js +13 -5
- package/commands/account/list.d.ts +3 -7
- package/commands/account/list.js +15 -8
- package/commands/account/remove.d.ts +3 -7
- package/commands/account/remove.js +21 -9
- package/commands/account/removeOverride.d.ts +3 -7
- package/commands/account/removeOverride.js +23 -6
- package/commands/account/rename.d.ts +3 -7
- package/commands/account/rename.js +16 -9
- package/commands/account/use.d.ts +5 -9
- package/commands/account/use.js +14 -6
- package/commands/account.d.ts +3 -4
- package/commands/account.js +35 -58
- package/commands/app/migrate.d.ts +1 -2
- package/commands/app/migrate.js +7 -8
- package/commands/app/secret/add.d.ts +7 -0
- package/commands/app/secret/add.js +64 -0
- package/commands/app/secret/delete.d.ts +8 -0
- package/commands/app/secret/delete.js +87 -0
- package/commands/app/secret/list.d.ts +6 -0
- package/commands/app/secret/list.js +64 -0
- package/commands/app/secret/update.d.ts +7 -0
- package/commands/app/secret/update.js +77 -0
- package/commands/app/secret.d.ts +3 -0
- package/commands/app/secret.js +30 -0
- package/commands/app.d.ts +2 -5
- package/commands/app.js +12 -8
- package/commands/auth.d.ts +3 -7
- package/commands/auth.js +12 -5
- package/commands/cms/convertFields.d.ts +7 -1
- package/commands/cms/convertFields.js +57 -41
- package/commands/cms/getReactModule.d.ts +7 -1
- package/commands/cms/getReactModule.js +52 -34
- package/commands/cms/lighthouseScore.d.ts +8 -1
- package/commands/cms/lighthouseScore.js +129 -100
- package/commands/cms.d.ts +3 -1
- package/commands/cms.js +24 -15
- package/commands/completion.d.ts +3 -1
- package/commands/completion.js +25 -12
- package/commands/config/migrate.d.ts +3 -7
- package/commands/config/migrate.js +25 -15
- package/commands/config/set.d.ts +5 -6
- package/commands/config/set.js +38 -14
- package/commands/config.d.ts +3 -4
- package/commands/config.js +20 -44
- package/commands/create/api-sample.d.ts +3 -1
- package/commands/create/api-sample.js +34 -38
- package/commands/create/app.d.ts +3 -1
- package/commands/create/app.js +9 -7
- package/commands/create/function.d.ts +3 -1
- package/commands/create/function.js +11 -10
- package/commands/create/index.d.ts +5 -1
- package/commands/create/index.js +23 -11
- package/commands/create/module.d.ts +3 -1
- package/commands/create/module.js +14 -13
- package/commands/create/react-app.d.ts +3 -1
- package/commands/create/react-app.js +10 -7
- package/commands/create/template.d.ts +3 -1
- package/commands/create/template.js +14 -14
- package/commands/create/vue-app.d.ts +3 -1
- package/commands/create/vue-app.js +10 -7
- package/commands/create/webpack-serverless.d.ts +3 -1
- package/commands/create/webpack-serverless.js +10 -7
- package/commands/create/website-theme.d.ts +3 -1
- package/commands/create/website-theme.js +10 -9
- package/commands/create.d.ts +4 -24
- package/commands/create.js +64 -74
- package/commands/customObject/create.d.ts +4 -9
- package/commands/customObject/create.js +17 -10
- package/commands/customObject/schema/create.d.ts +4 -9
- package/commands/customObject/schema/create.js +18 -11
- package/commands/customObject/schema/delete.d.ts +4 -9
- package/commands/customObject/schema/delete.js +17 -10
- package/commands/customObject/schema/fetch-all.d.ts +4 -9
- package/commands/customObject/schema/fetch-all.js +17 -10
- package/commands/customObject/schema/fetch.d.ts +4 -9
- package/commands/customObject/schema/fetch.js +17 -10
- package/commands/customObject/schema/list.d.ts +4 -8
- package/commands/customObject/schema/list.js +17 -10
- package/commands/customObject/schema/update.d.ts +4 -9
- package/commands/customObject/schema/update.js +18 -11
- package/commands/customObject/schema.d.ts +3 -5
- package/commands/customObject/schema.js +27 -54
- package/commands/customObject.d.ts +3 -4
- package/commands/customObject.js +20 -45
- package/commands/doctor.d.ts +6 -8
- package/commands/doctor.js +32 -21
- package/commands/feedback.d.ts +4 -1
- package/commands/feedback.js +40 -47
- package/commands/fetch.d.ts +12 -1
- package/commands/fetch.js +49 -33
- package/commands/filemanager/fetch.d.ts +4 -9
- package/commands/filemanager/fetch.js +18 -11
- package/commands/filemanager/upload.d.ts +4 -9
- package/commands/filemanager/upload.js +17 -11
- package/commands/filemanager.d.ts +3 -4
- package/commands/filemanager.js +20 -41
- package/commands/function/deploy.d.ts +6 -1
- package/commands/function/deploy.js +70 -50
- package/commands/function/list.d.ts +6 -1
- package/commands/function/list.js +44 -32
- package/commands/function/server.d.ts +10 -1
- package/commands/function/server.js +49 -38
- package/commands/function.d.ts +5 -1
- package/commands/function.js +24 -10
- package/commands/hubdb/clear.d.ts +4 -9
- package/commands/hubdb/clear.js +17 -10
- package/commands/hubdb/create.d.ts +4 -9
- package/commands/hubdb/create.js +17 -10
- package/commands/hubdb/delete.d.ts +4 -9
- package/commands/hubdb/delete.js +17 -10
- package/commands/hubdb/fetch.d.ts +4 -9
- package/commands/hubdb/fetch.js +17 -10
- package/commands/hubdb.d.ts +3 -2
- package/commands/hubdb.js +23 -45
- package/commands/init.d.ts +3 -7
- package/commands/init.js +12 -5
- package/commands/lint.d.ts +6 -4
- package/commands/lint.js +44 -43
- package/commands/list.d.ts +3 -7
- package/commands/list.js +19 -11
- package/commands/logs.d.ts +10 -1
- package/commands/logs.js +53 -44
- package/commands/module/marketplace-validate.d.ts +6 -1
- package/commands/module/marketplace-validate.js +39 -27
- package/commands/module.d.ts +3 -1
- package/commands/module.js +22 -10
- package/commands/mv.d.ts +3 -7
- package/commands/mv.js +19 -11
- package/commands/open.d.ts +3 -7
- package/commands/open.js +19 -11
- package/commands/project/cloneApp.d.ts +1 -1
- package/commands/project/cloneApp.js +2 -2
- package/commands/project/create.js +3 -3
- package/commands/project/deploy.d.ts +1 -0
- package/commands/project/deploy.js +40 -12
- package/commands/project/dev/index.d.ts +1 -4
- package/commands/project/dev/index.js +48 -16
- package/commands/project/dev/unifiedFlow.d.ts +2 -1
- package/commands/project/dev/unifiedFlow.js +85 -30
- package/commands/project/migrate.d.ts +1 -0
- package/commands/project/profile/add.d.ts +7 -0
- package/commands/project/profile/add.js +209 -0
- package/commands/project/profile/delete.d.ts +6 -0
- package/commands/project/profile/delete.js +123 -0
- package/commands/project/profile.d.ts +3 -0
- package/commands/project/profile.js +25 -0
- package/commands/project/upload.d.ts +1 -0
- package/commands/project/upload.js +38 -8
- package/commands/project/validate.d.ts +4 -0
- package/commands/project/validate.js +53 -0
- package/commands/project.js +4 -0
- package/commands/remove.d.ts +3 -7
- package/commands/remove.js +19 -11
- package/commands/sandbox/create.d.ts +4 -9
- package/commands/sandbox/create.js +18 -11
- package/commands/sandbox/delete.d.ts +4 -9
- package/commands/sandbox/delete.js +18 -11
- package/commands/sandbox.d.ts +3 -4
- package/commands/sandbox.js +20 -43
- package/commands/secret/addSecret.d.ts +4 -9
- package/commands/secret/addSecret.js +17 -10
- package/commands/secret/deleteSecret.d.ts +4 -9
- package/commands/secret/deleteSecret.js +17 -10
- package/commands/secret/listSecret.d.ts +4 -9
- package/commands/secret/listSecret.js +17 -10
- package/commands/secret/updateSecret.d.ts +4 -9
- package/commands/secret/updateSecret.js +17 -10
- package/commands/secret.d.ts +3 -4
- package/commands/secret.js +25 -48
- package/commands/setupMcp.d.ts +8 -0
- package/commands/setupMcp.js +229 -0
- package/commands/theme/generate-selectors.d.ts +3 -7
- package/commands/theme/generate-selectors.js +14 -6
- package/commands/theme/marketplace-validate.d.ts +4 -9
- package/commands/theme/marketplace-validate.js +17 -10
- package/commands/theme/preview.d.ts +4 -9
- package/commands/theme/preview.js +16 -9
- package/commands/theme.d.ts +3 -4
- package/commands/theme.js +23 -46
- package/commands/upload.d.ts +12 -1
- package/commands/upload.js +118 -97
- package/commands/watch.d.ts +14 -1
- package/commands/watch.js +76 -65
- package/lang/en.d.ts +838 -574
- package/lang/en.js +630 -373
- package/lang/en.lyaml +30 -23
- package/lib/accountTypes.js +2 -1
- package/lib/app/migrate.d.ts +23 -0
- package/lib/app/migrate.js +14 -3
- package/lib/app/migrate_legacy.js +7 -7
- package/lib/app/urls.d.ts +16 -0
- package/lib/app/urls.js +16 -0
- package/lib/configMigrate.js +24 -10
- package/lib/configOptions.d.ts +4 -0
- package/lib/configOptions.js +41 -46
- package/lib/constants.d.ts +6 -0
- package/lib/constants.js +7 -1
- package/lib/dependencyManagement.d.ts +0 -5
- package/lib/dependencyManagement.js +13 -39
- package/lib/doctor/Doctor.js +2 -1
- package/lib/filesystem.d.ts +1 -1
- package/lib/interpolation.d.ts +2 -3
- package/lib/lang.d.ts +2 -3
- package/lib/middleware/autoUpdateMiddleware.d.ts +1 -0
- package/lib/middleware/autoUpdateMiddleware.js +89 -0
- package/lib/middleware/configMiddleware.js +8 -0
- package/lib/npm.d.ts +9 -0
- package/lib/npm.js +36 -0
- package/lib/projectProfiles.d.ts +6 -0
- package/lib/projectProfiles.js +65 -0
- package/lib/projects/buildAndDeploy.js +17 -2
- package/lib/projects/localDev/AppDevModeInterface.d.ts +26 -0
- package/lib/projects/localDev/AppDevModeInterface.js +156 -0
- package/lib/projects/localDev/DevServerManagerV2.d.ts +11 -22
- package/lib/projects/localDev/DevServerManagerV2.js +19 -15
- package/lib/projects/localDev/LocalDevLogger.d.ts +30 -0
- package/lib/projects/localDev/LocalDevLogger.js +158 -0
- package/lib/projects/localDev/LocalDevManager.js +12 -5
- package/lib/projects/localDev/LocalDevProcess.d.ts +27 -0
- package/lib/projects/localDev/LocalDevProcess.js +171 -0
- package/lib/projects/localDev/LocalDevState.d.ts +37 -0
- package/lib/projects/localDev/LocalDevState.js +78 -0
- package/lib/projects/localDev/LocalDevWatcher.d.ts +10 -0
- package/lib/projects/localDev/LocalDevWatcher.js +56 -0
- package/lib/projects/localDev/LocalDevWebsocketServer.d.ts +17 -0
- package/lib/projects/localDev/LocalDevWebsocketServer.js +92 -0
- package/lib/projects/localDev/helpers.d.ts +3 -2
- package/lib/projects/localDev/helpers.js +32 -2
- package/lib/projects/upload.d.ts +2 -1
- package/lib/projects/upload.js +2 -2
- package/lib/prompts/createApiSamplePrompt.d.ts +2 -10
- package/lib/prompts/createTemplatePrompt.d.ts +22 -4
- package/lib/prompts/installAppPrompt.d.ts +1 -0
- package/lib/prompts/installAppPrompt.js +35 -0
- package/lib/prompts/projectDevTargetAccountPrompt.d.ts +6 -1
- package/lib/prompts/projectDevTargetAccountPrompt.js +6 -6
- package/lib/prompts/promptUtils.d.ts +2 -1
- package/lib/prompts/promptUtils.js +2 -1
- package/lib/prompts/selectAppPrompt.d.ts +2 -0
- package/lib/prompts/selectAppPrompt.js +40 -0
- package/lib/prompts/{selectPublicAppPrompt.d.ts → selectPublicAppForMigrationPrompt.d.ts} +1 -1
- package/lib/prompts/{selectPublicAppPrompt.js → selectPublicAppForMigrationPrompt.js} +8 -8
- package/lib/testUtils.d.ts +3 -3
- package/lib/testUtils.js +8 -9
- package/lib/ui/index.js +4 -1
- package/lib/upload.d.ts +1 -1
- package/lib/validation.js +4 -5
- package/lib/yargsUtils.d.ts +4 -0
- package/lib/yargsUtils.js +6 -0
- package/mcp-server/index.d.ts +1 -0
- package/mcp-server/index.js +17 -0
- package/mcp-server/mcpLoader.d.ts +5 -0
- package/mcp-server/mcpLoader.js +24 -0
- package/mcp-server/tools/ExplainProjectStructureTool.d.ts +33 -0
- package/mcp-server/tools/ExplainProjectStructureTool.js +266 -0
- package/mcp-server/tools/GenerateAppComponentTool.d.ts +99 -0
- package/mcp-server/tools/GenerateAppComponentTool.js +193 -0
- package/mcp-server/tools/GenerateCardComponentTool.d.ts +74 -0
- package/mcp-server/tools/GenerateCardComponentTool.js +146 -0
- package/mcp-server/tools/GenerateProjectConfigTool.d.ts +32 -0
- package/mcp-server/tools/GenerateProjectConfigTool.js +40 -0
- package/mcp-server/tools/HubSpotCLIHelper.d.ts +16 -0
- package/mcp-server/tools/HubSpotCLIHelper.js +74 -0
- package/mcp-server/tools/UploadProjectTool.d.ts +44 -0
- package/mcp-server/tools/UploadProjectTool.js +149 -0
- package/mcp-server/tools/ValidateProjectTool.d.ts +62 -0
- package/mcp-server/tools/ValidateProjectTool.js +315 -0
- package/package.json +13 -6
- package/types/Cms.d.ts +30 -0
- package/types/Cms.js +2 -0
- package/types/LocalDev.d.ts +24 -0
- package/types/LocalDev.js +2 -0
- package/types/Prompts.d.ts +0 -7
- package/types/Yargs.d.ts +8 -1
- package/lib/projects/localDev/LocalDevManagerV2.d.ts +0 -64
- package/lib/projects/localDev/LocalDevManagerV2.js +0 -345
- package/lib/prompts/installPublicAppPrompt.d.ts +0 -1
- package/lib/prompts/installPublicAppPrompt.js +0 -41
package/commands/function.js
CHANGED
|
@@ -1,15 +1,29 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
2
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
|
|
4
|
-
const
|
|
5
|
-
const
|
|
6
|
-
const
|
|
7
|
-
const
|
|
8
|
-
const
|
|
6
|
+
exports.describe = exports.command = void 0;
|
|
7
|
+
const list_1 = __importDefault(require("./function/list"));
|
|
8
|
+
const deploy_1 = __importDefault(require("./function/deploy"));
|
|
9
|
+
const server_1 = __importDefault(require("./function/server"));
|
|
10
|
+
const lang_1 = require("../lib/lang");
|
|
11
|
+
const yargsUtils_1 = require("../lib/yargsUtils");
|
|
9
12
|
exports.command = ['function', 'functions'];
|
|
10
|
-
exports.describe = i18n(`commands.function.describe`);
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
yargs.command(list).command(deploy).command(server).demandCommand(1, '');
|
|
13
|
+
exports.describe = (0, lang_1.i18n)(`commands.function.describe`);
|
|
14
|
+
function functionBuilder(yargs) {
|
|
15
|
+
yargs.command(list_1.default).command(deploy_1.default).command(server_1.default).demandCommand(1, '');
|
|
14
16
|
return yargs;
|
|
17
|
+
}
|
|
18
|
+
const builder = (0, yargsUtils_1.makeYargsBuilder)(functionBuilder, exports.command, exports.describe, {
|
|
19
|
+
useGlobalOptions: true,
|
|
20
|
+
});
|
|
21
|
+
const functionCommand = {
|
|
22
|
+
command: exports.command,
|
|
23
|
+
describe: exports.describe,
|
|
24
|
+
builder,
|
|
25
|
+
handler: () => { },
|
|
15
26
|
};
|
|
27
|
+
exports.default = functionCommand;
|
|
28
|
+
// TODO Remove this legacy export once we've migrated all commands to TS
|
|
29
|
+
module.exports = functionCommand;
|
|
@@ -1,12 +1,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
export declare const command = "clear [table-id]";
|
|
4
|
-
export declare const describe: string;
|
|
5
|
-
type CombinedArgs = ConfigArgs & AccountArgs & EnvironmentArgs;
|
|
6
|
-
type HubdbClearArgs = CommonArgs & CombinedArgs & {
|
|
1
|
+
import { CommonArgs, ConfigArgs, AccountArgs, EnvironmentArgs, YargsCommandModule } from '../../types/Yargs';
|
|
2
|
+
type HubdbClearArgs = CommonArgs & ConfigArgs & AccountArgs & EnvironmentArgs & {
|
|
7
3
|
tableId?: number;
|
|
8
4
|
dest?: string;
|
|
9
5
|
};
|
|
10
|
-
|
|
11
|
-
export
|
|
12
|
-
export {};
|
|
6
|
+
declare const hubdbClearCommand: YargsCommandModule<unknown, HubdbClearArgs>;
|
|
7
|
+
export default hubdbClearCommand;
|
package/commands/hubdb/clear.js
CHANGED
|
@@ -1,18 +1,15 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.describe = exports.command = void 0;
|
|
4
|
-
exports.handler = handler;
|
|
5
|
-
exports.builder = builder;
|
|
6
3
|
const logger_1 = require("@hubspot/local-dev-lib/logger");
|
|
7
4
|
const index_1 = require("../../lib/errorHandlers/index");
|
|
8
5
|
const hubdb_1 = require("@hubspot/local-dev-lib/hubdb");
|
|
9
6
|
const hubdb_2 = require("@hubspot/local-dev-lib/api/hubdb");
|
|
10
7
|
const selectHubDBTablePrompt_1 = require("../../lib/prompts/selectHubDBTablePrompt");
|
|
11
8
|
const usageTracking_1 = require("../../lib/usageTracking");
|
|
12
|
-
const commonOpts_1 = require("../../lib/commonOpts");
|
|
13
9
|
const lang_1 = require("../../lib/lang");
|
|
14
|
-
|
|
15
|
-
|
|
10
|
+
const yargsUtils_1 = require("../../lib/yargsUtils");
|
|
11
|
+
const command = 'clear [table-id]';
|
|
12
|
+
const describe = (0, lang_1.i18n)('commands.hubdb.subcommands.clear.describe');
|
|
16
13
|
async function handler(args) {
|
|
17
14
|
const { derivedAccountId } = args;
|
|
18
15
|
(0, usageTracking_1.trackCommandUsage)('hubdb-clear', {}, derivedAccountId);
|
|
@@ -45,13 +42,23 @@ async function handler(args) {
|
|
|
45
42
|
(0, index_1.logError)(e);
|
|
46
43
|
}
|
|
47
44
|
}
|
|
48
|
-
function
|
|
49
|
-
(0, commonOpts_1.addAccountOptions)(yargs);
|
|
50
|
-
(0, commonOpts_1.addConfigOptions)(yargs);
|
|
51
|
-
(0, commonOpts_1.addUseEnvironmentOptions)(yargs);
|
|
45
|
+
function hubdbClearBuilder(yargs) {
|
|
52
46
|
yargs.positional('table-id', {
|
|
53
47
|
describe: (0, lang_1.i18n)('commands.hubdb.subcommands.clear.positionals.tableId.describe'),
|
|
54
48
|
type: 'string',
|
|
55
49
|
});
|
|
56
50
|
return yargs;
|
|
57
51
|
}
|
|
52
|
+
const builder = (0, yargsUtils_1.makeYargsBuilder)(hubdbClearBuilder, command, describe, {
|
|
53
|
+
useGlobalOptions: true,
|
|
54
|
+
useConfigOptions: true,
|
|
55
|
+
useAccountOptions: true,
|
|
56
|
+
useEnvironmentOptions: true,
|
|
57
|
+
});
|
|
58
|
+
const hubdbClearCommand = {
|
|
59
|
+
command,
|
|
60
|
+
describe,
|
|
61
|
+
handler,
|
|
62
|
+
builder,
|
|
63
|
+
};
|
|
64
|
+
exports.default = hubdbClearCommand;
|
|
@@ -1,11 +1,6 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
export declare const command = "create";
|
|
4
|
-
export declare const describe: string;
|
|
5
|
-
type CombinedArgs = ConfigArgs & AccountArgs & EnvironmentArgs;
|
|
6
|
-
type HubdbCreateArgs = CommonArgs & CombinedArgs & {
|
|
1
|
+
import { CommonArgs, ConfigArgs, AccountArgs, EnvironmentArgs, YargsCommandModule } from '../../types/Yargs';
|
|
2
|
+
type HubdbCreateArgs = CommonArgs & ConfigArgs & AccountArgs & EnvironmentArgs & {
|
|
7
3
|
path?: string;
|
|
8
4
|
};
|
|
9
|
-
|
|
10
|
-
export
|
|
11
|
-
export {};
|
|
5
|
+
declare const hubdbCreateCommand: YargsCommandModule<unknown, HubdbCreateArgs>;
|
|
6
|
+
export default hubdbCreateCommand;
|
package/commands/hubdb/create.js
CHANGED
|
@@ -3,9 +3,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.describe = exports.command = void 0;
|
|
7
|
-
exports.handler = handler;
|
|
8
|
-
exports.builder = builder;
|
|
9
6
|
const path_1 = __importDefault(require("path"));
|
|
10
7
|
const logger_1 = require("@hubspot/local-dev-lib/logger");
|
|
11
8
|
const index_1 = require("../../lib/errorHandlers/index");
|
|
@@ -14,11 +11,11 @@ const hubdb_1 = require("@hubspot/local-dev-lib/hubdb");
|
|
|
14
11
|
const promptUtils_1 = require("../../lib/prompts/promptUtils");
|
|
15
12
|
const validation_1 = require("../../lib/validation");
|
|
16
13
|
const usageTracking_1 = require("../../lib/usageTracking");
|
|
17
|
-
const commonOpts_1 = require("../../lib/commonOpts");
|
|
18
14
|
const lang_1 = require("../../lib/lang");
|
|
19
15
|
const exitCodes_1 = require("../../lib/enums/exitCodes");
|
|
20
|
-
|
|
21
|
-
|
|
16
|
+
const yargsUtils_1 = require("../../lib/yargsUtils");
|
|
17
|
+
const command = 'create';
|
|
18
|
+
const describe = (0, lang_1.i18n)(`commands.hubdb.subcommands.create.describe`);
|
|
22
19
|
function selectPathPrompt(options) {
|
|
23
20
|
return (0, promptUtils_1.promptUser)([
|
|
24
21
|
{
|
|
@@ -66,13 +63,23 @@ async function handler(args) {
|
|
|
66
63
|
(0, index_1.logError)(e);
|
|
67
64
|
}
|
|
68
65
|
}
|
|
69
|
-
function
|
|
70
|
-
(0, commonOpts_1.addAccountOptions)(yargs);
|
|
71
|
-
(0, commonOpts_1.addConfigOptions)(yargs);
|
|
72
|
-
(0, commonOpts_1.addUseEnvironmentOptions)(yargs);
|
|
66
|
+
function hubdbCreateBuilder(yargs) {
|
|
73
67
|
yargs.options('path', {
|
|
74
68
|
describe: (0, lang_1.i18n)(`commands.hubdb.subcommands.create.options.path.describe`),
|
|
75
69
|
type: 'string',
|
|
76
70
|
});
|
|
77
71
|
return yargs;
|
|
78
72
|
}
|
|
73
|
+
const builder = (0, yargsUtils_1.makeYargsBuilder)(hubdbCreateBuilder, command, describe, {
|
|
74
|
+
useGlobalOptions: true,
|
|
75
|
+
useConfigOptions: true,
|
|
76
|
+
useAccountOptions: true,
|
|
77
|
+
useEnvironmentOptions: true,
|
|
78
|
+
});
|
|
79
|
+
const hubdbCreateCommand = {
|
|
80
|
+
command,
|
|
81
|
+
describe,
|
|
82
|
+
handler,
|
|
83
|
+
builder,
|
|
84
|
+
};
|
|
85
|
+
exports.default = hubdbCreateCommand;
|
|
@@ -1,11 +1,6 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
export declare const command = "delete [table-id]";
|
|
4
|
-
export declare const describe: string;
|
|
5
|
-
type CombinedArgs = ConfigArgs & AccountArgs & EnvironmentArgs;
|
|
6
|
-
type HubdbDeleteArgs = CommonArgs & CombinedArgs & {
|
|
1
|
+
import { CommonArgs, ConfigArgs, AccountArgs, EnvironmentArgs, YargsCommandModule } from '../../types/Yargs';
|
|
2
|
+
type HubdbDeleteArgs = CommonArgs & ConfigArgs & AccountArgs & EnvironmentArgs & {
|
|
7
3
|
tableId?: number;
|
|
8
4
|
};
|
|
9
|
-
|
|
10
|
-
export
|
|
11
|
-
export {};
|
|
5
|
+
declare const hubdbDeleteCommand: YargsCommandModule<unknown, HubdbDeleteArgs>;
|
|
6
|
+
export default hubdbDeleteCommand;
|
package/commands/hubdb/delete.js
CHANGED
|
@@ -1,19 +1,16 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.describe = exports.command = void 0;
|
|
4
|
-
exports.handler = handler;
|
|
5
|
-
exports.builder = builder;
|
|
6
3
|
const logger_1 = require("@hubspot/local-dev-lib/logger");
|
|
7
4
|
const index_1 = require("../../lib/errorHandlers/index");
|
|
8
5
|
const hubdb_1 = require("@hubspot/local-dev-lib/api/hubdb");
|
|
9
6
|
const usageTracking_1 = require("../../lib/usageTracking");
|
|
10
|
-
const commonOpts_1 = require("../../lib/commonOpts");
|
|
11
7
|
const selectHubDBTablePrompt_1 = require("../../lib/prompts/selectHubDBTablePrompt");
|
|
12
8
|
const promptUtils_1 = require("../../lib/prompts/promptUtils");
|
|
13
9
|
const exitCodes_1 = require("../../lib/enums/exitCodes");
|
|
14
10
|
const lang_1 = require("../../lib/lang");
|
|
15
|
-
|
|
16
|
-
|
|
11
|
+
const yargsUtils_1 = require("../../lib/yargsUtils");
|
|
12
|
+
const command = 'delete [table-id]';
|
|
13
|
+
const describe = (0, lang_1.i18n)('commands.hubdb.subcommands.delete.describe');
|
|
17
14
|
async function handler(args) {
|
|
18
15
|
const { force, derivedAccountId } = args;
|
|
19
16
|
(0, usageTracking_1.trackCommandUsage)('hubdb-delete', {}, derivedAccountId);
|
|
@@ -50,10 +47,7 @@ async function handler(args) {
|
|
|
50
47
|
(0, index_1.logError)(e);
|
|
51
48
|
}
|
|
52
49
|
}
|
|
53
|
-
function
|
|
54
|
-
(0, commonOpts_1.addAccountOptions)(yargs);
|
|
55
|
-
(0, commonOpts_1.addConfigOptions)(yargs);
|
|
56
|
-
(0, commonOpts_1.addUseEnvironmentOptions)(yargs);
|
|
50
|
+
function hubdbDeleteBuilder(yargs) {
|
|
57
51
|
yargs.positional('table-id', {
|
|
58
52
|
describe: (0, lang_1.i18n)('commands.hubdb.subcommands.delete.positionals.tableId.describe'),
|
|
59
53
|
type: 'string',
|
|
@@ -64,3 +58,16 @@ function builder(yargs) {
|
|
|
64
58
|
});
|
|
65
59
|
return yargs;
|
|
66
60
|
}
|
|
61
|
+
const builder = (0, yargsUtils_1.makeYargsBuilder)(hubdbDeleteBuilder, command, describe, {
|
|
62
|
+
useGlobalOptions: true,
|
|
63
|
+
useConfigOptions: true,
|
|
64
|
+
useAccountOptions: true,
|
|
65
|
+
useEnvironmentOptions: true,
|
|
66
|
+
});
|
|
67
|
+
const hubdbDeleteCommand = {
|
|
68
|
+
command,
|
|
69
|
+
describe,
|
|
70
|
+
handler,
|
|
71
|
+
builder,
|
|
72
|
+
};
|
|
73
|
+
exports.default = hubdbDeleteCommand;
|
|
@@ -1,12 +1,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
export declare const command = "fetch [table-id] [dest]";
|
|
4
|
-
export declare const describe: string;
|
|
5
|
-
type CombinedArgs = ConfigArgs & AccountArgs & EnvironmentArgs;
|
|
6
|
-
type HubdbFetchArgs = CommonArgs & CombinedArgs & {
|
|
1
|
+
import { CommonArgs, ConfigArgs, AccountArgs, EnvironmentArgs, YargsCommandModule } from '../../types/Yargs';
|
|
2
|
+
type HubdbFetchArgs = CommonArgs & ConfigArgs & AccountArgs & EnvironmentArgs & {
|
|
7
3
|
tableId?: number;
|
|
8
4
|
dest?: string;
|
|
9
5
|
};
|
|
10
|
-
|
|
11
|
-
export
|
|
12
|
-
export {};
|
|
6
|
+
declare const hubdbFetchCommand: YargsCommandModule<unknown, HubdbFetchArgs>;
|
|
7
|
+
export default hubdbFetchCommand;
|
package/commands/hubdb/fetch.js
CHANGED
|
@@ -1,17 +1,14 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.describe = exports.command = void 0;
|
|
4
|
-
exports.handler = handler;
|
|
5
|
-
exports.builder = builder;
|
|
6
3
|
const logger_1 = require("@hubspot/local-dev-lib/logger");
|
|
7
4
|
const index_1 = require("../../lib/errorHandlers/index");
|
|
8
5
|
const hubdb_1 = require("@hubspot/local-dev-lib/hubdb");
|
|
9
6
|
const selectHubDBTablePrompt_1 = require("../../lib/prompts/selectHubDBTablePrompt");
|
|
10
7
|
const usageTracking_1 = require("../../lib/usageTracking");
|
|
11
|
-
const commonOpts_1 = require("../../lib/commonOpts");
|
|
12
8
|
const lang_1 = require("../../lib/lang");
|
|
13
|
-
|
|
14
|
-
|
|
9
|
+
const yargsUtils_1 = require("../../lib/yargsUtils");
|
|
10
|
+
const command = 'fetch [table-id] [dest]';
|
|
11
|
+
const describe = (0, lang_1.i18n)('commands.hubdb.subcommands.fetch.describe');
|
|
15
12
|
async function handler(args) {
|
|
16
13
|
const { derivedAccountId } = args;
|
|
17
14
|
(0, usageTracking_1.trackCommandUsage)('hubdb-fetch', {}, derivedAccountId);
|
|
@@ -33,10 +30,7 @@ async function handler(args) {
|
|
|
33
30
|
(0, index_1.logError)(e);
|
|
34
31
|
}
|
|
35
32
|
}
|
|
36
|
-
function
|
|
37
|
-
(0, commonOpts_1.addAccountOptions)(yargs);
|
|
38
|
-
(0, commonOpts_1.addConfigOptions)(yargs);
|
|
39
|
-
(0, commonOpts_1.addUseEnvironmentOptions)(yargs);
|
|
33
|
+
function hubdbFetchBuilder(yargs) {
|
|
40
34
|
yargs.positional('table-id', {
|
|
41
35
|
describe: (0, lang_1.i18n)('commands.hubdb.subcommands.fetch.positionals.tableId.describe'),
|
|
42
36
|
type: 'string',
|
|
@@ -47,3 +41,16 @@ function builder(yargs) {
|
|
|
47
41
|
});
|
|
48
42
|
return yargs;
|
|
49
43
|
}
|
|
44
|
+
const builder = (0, yargsUtils_1.makeYargsBuilder)(hubdbFetchBuilder, command, describe, {
|
|
45
|
+
useGlobalOptions: true,
|
|
46
|
+
useConfigOptions: true,
|
|
47
|
+
useAccountOptions: true,
|
|
48
|
+
useEnvironmentOptions: true,
|
|
49
|
+
});
|
|
50
|
+
const hubdbFetchCommand = {
|
|
51
|
+
command,
|
|
52
|
+
describe,
|
|
53
|
+
handler,
|
|
54
|
+
builder,
|
|
55
|
+
};
|
|
56
|
+
exports.default = hubdbFetchCommand;
|
package/commands/hubdb.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { YargsCommandModuleBucket } from '../types/Yargs';
|
|
2
2
|
export declare const command = "hubdb";
|
|
3
3
|
export declare const describe: string;
|
|
4
|
-
|
|
4
|
+
declare const hubdbCommand: YargsCommandModuleBucket;
|
|
5
|
+
export default hubdbCommand;
|
package/commands/hubdb.js
CHANGED
|
@@ -1,55 +1,33 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
-
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
-
}) : function(o, v) {
|
|
16
|
-
o["default"] = v;
|
|
17
|
-
});
|
|
18
|
-
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
-
var ownKeys = function(o) {
|
|
20
|
-
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
-
var ar = [];
|
|
22
|
-
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
-
return ar;
|
|
24
|
-
};
|
|
25
|
-
return ownKeys(o);
|
|
26
|
-
};
|
|
27
|
-
return function (mod) {
|
|
28
|
-
if (mod && mod.__esModule) return mod;
|
|
29
|
-
var result = {};
|
|
30
|
-
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
-
__setModuleDefault(result, mod);
|
|
32
|
-
return result;
|
|
33
|
-
};
|
|
34
|
-
})();
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
35
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
6
|
exports.describe = exports.command = void 0;
|
|
37
|
-
|
|
38
|
-
const
|
|
39
|
-
const
|
|
40
|
-
const
|
|
41
|
-
const deleteCommand = __importStar(require("./hubdb/delete"));
|
|
42
|
-
const clearCommand = __importStar(require("./hubdb/clear"));
|
|
7
|
+
const create_1 = __importDefault(require("./hubdb/create"));
|
|
8
|
+
const fetch_1 = __importDefault(require("./hubdb/fetch"));
|
|
9
|
+
const delete_1 = __importDefault(require("./hubdb/delete"));
|
|
10
|
+
const clear_1 = __importDefault(require("./hubdb/clear"));
|
|
43
11
|
const lang_1 = require("../lib/lang");
|
|
12
|
+
const yargsUtils_1 = require("../lib/yargsUtils");
|
|
44
13
|
exports.command = 'hubdb';
|
|
45
14
|
exports.describe = (0, lang_1.i18n)('commands.hubdb.describe');
|
|
46
|
-
function
|
|
47
|
-
(0, commonOpts_1.addGlobalOptions)(yargs);
|
|
15
|
+
function hubdbBuilder(yargs) {
|
|
48
16
|
yargs
|
|
49
|
-
.command(
|
|
50
|
-
.command(
|
|
51
|
-
.command(
|
|
52
|
-
.command(
|
|
17
|
+
.command(clear_1.default)
|
|
18
|
+
.command(create_1.default)
|
|
19
|
+
.command(fetch_1.default)
|
|
20
|
+
.command(delete_1.default)
|
|
53
21
|
.demandCommand(1, '');
|
|
54
22
|
return yargs;
|
|
55
23
|
}
|
|
24
|
+
const builder = (0, yargsUtils_1.makeYargsBuilder)(hubdbBuilder, exports.command, exports.describe);
|
|
25
|
+
const hubdbCommand = {
|
|
26
|
+
command: exports.command,
|
|
27
|
+
describe: exports.describe,
|
|
28
|
+
builder,
|
|
29
|
+
handler: () => { },
|
|
30
|
+
};
|
|
31
|
+
exports.default = hubdbCommand;
|
|
32
|
+
// TODO Remove this legacy export once we've migrated all commands to TS
|
|
33
|
+
module.exports = hubdbCommand;
|
package/commands/init.d.ts
CHANGED
|
@@ -1,12 +1,8 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { ConfigArgs, CommonArgs, TestingArgs, AccountArgs } from '../types/Yargs';
|
|
3
|
-
export declare const command = "init";
|
|
4
|
-
export declare const describe: string;
|
|
1
|
+
import { ConfigArgs, CommonArgs, TestingArgs, AccountArgs, YargsCommandModule } from '../types/Yargs';
|
|
5
2
|
type InitArgs = CommonArgs & ConfigArgs & TestingArgs & AccountArgs & {
|
|
6
3
|
authType?: string;
|
|
7
4
|
'disable-tracking'?: boolean;
|
|
8
5
|
'use-hidden-config'?: boolean;
|
|
9
6
|
};
|
|
10
|
-
|
|
11
|
-
export
|
|
12
|
-
export {};
|
|
7
|
+
declare const initCommand: YargsCommandModule<unknown, InitArgs>;
|
|
8
|
+
export default initCommand;
|
package/commands/init.js
CHANGED
|
@@ -3,8 +3,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.builder = exports.describe = exports.command = void 0;
|
|
7
|
-
exports.handler = handler;
|
|
8
6
|
const path_1 = __importDefault(require("path"));
|
|
9
7
|
const fs_extra_1 = __importDefault(require("fs-extra"));
|
|
10
8
|
const config_1 = require("@hubspot/local-dev-lib/config");
|
|
@@ -62,8 +60,8 @@ const AUTH_TYPE_NAMES = {
|
|
|
62
60
|
[auth_1.PERSONAL_ACCESS_KEY_AUTH_METHOD.value]: auth_1.PERSONAL_ACCESS_KEY_AUTH_METHOD.name,
|
|
63
61
|
[auth_1.OAUTH_AUTH_METHOD.value]: auth_1.OAUTH_AUTH_METHOD.name,
|
|
64
62
|
};
|
|
65
|
-
|
|
66
|
-
|
|
63
|
+
const command = 'init';
|
|
64
|
+
const describe = (0, lang_1.i18n)(`commands.init.describe`);
|
|
67
65
|
async function handler(args) {
|
|
68
66
|
const { authType: authTypeFlagValue, c: configFlagValue, providedAccountId, disableTracking, useHiddenConfig, } = args;
|
|
69
67
|
const authType = (authTypeFlagValue && authTypeFlagValue.toLowerCase()) ||
|
|
@@ -174,7 +172,7 @@ function initBuilder(yargs) {
|
|
|
174
172
|
yargs.conflicts('use-hidden-config', 'config');
|
|
175
173
|
return yargs;
|
|
176
174
|
}
|
|
177
|
-
|
|
175
|
+
const builder = (0, yargsUtils_1.makeYargsBuilder)(initBuilder, command, (0, lang_1.i18n)(`commands.init.verboseDescribe`, {
|
|
178
176
|
command: (0, ui_1.uiCommandReference)('hs auth'),
|
|
179
177
|
configName: config_2.DEFAULT_HUBSPOT_CONFIG_YAML_FILE_NAME,
|
|
180
178
|
authMethod: auth_1.PERSONAL_ACCESS_KEY_AUTH_METHOD.value,
|
|
@@ -183,3 +181,12 @@ exports.builder = (0, yargsUtils_1.makeYargsBuilder)(initBuilder, exports.comman
|
|
|
183
181
|
useConfigOptions: true,
|
|
184
182
|
useTestingOptions: true,
|
|
185
183
|
});
|
|
184
|
+
const initCommand = {
|
|
185
|
+
command,
|
|
186
|
+
describe,
|
|
187
|
+
handler,
|
|
188
|
+
builder,
|
|
189
|
+
};
|
|
190
|
+
exports.default = initCommand;
|
|
191
|
+
// TODO Remove this legacy export once we've migrated all commands to TS
|
|
192
|
+
module.exports = initCommand;
|
package/commands/lint.d.ts
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { AccountArgs, CommonArgs, ConfigArgs, YargsCommandModule } from '../types/Yargs';
|
|
2
|
+
type LintArgs = CommonArgs & ConfigArgs & AccountArgs & {
|
|
3
|
+
path: string;
|
|
4
|
+
};
|
|
5
|
+
declare const lintCommand: YargsCommandModule<unknown, LintArgs>;
|
|
6
|
+
export default lintCommand;
|
package/commands/lint.js
CHANGED
|
@@ -1,25 +1,23 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
const
|
|
6
|
-
const
|
|
7
|
-
const
|
|
8
|
-
const
|
|
9
|
-
const
|
|
10
|
-
const
|
|
11
|
-
const
|
|
12
|
-
const { EXIT_CODES } = require('../lib/enums/exitCodes');
|
|
13
|
-
exports.command = 'lint <path>';
|
|
3
|
+
const validate_1 = require("@hubspot/local-dev-lib/cms/validate");
|
|
4
|
+
const logger_1 = require("@hubspot/local-dev-lib/logger");
|
|
5
|
+
const index_1 = require("../lib/errorHandlers/index");
|
|
6
|
+
const usageTracking_1 = require("../lib/usageTracking");
|
|
7
|
+
const lang_1 = require("../lib/lang");
|
|
8
|
+
const filesystem_1 = require("../lib/filesystem");
|
|
9
|
+
const exitCodes_1 = require("../lib/enums/exitCodes");
|
|
10
|
+
const yargsUtils_1 = require("../lib/yargsUtils");
|
|
11
|
+
const command = 'lint <path>';
|
|
14
12
|
// Hiding since this command is still experimental
|
|
15
|
-
|
|
13
|
+
const describe = undefined; //'Lint a file or folder for HubL syntax';
|
|
16
14
|
function getErrorsFromHublValidationObject(validation) {
|
|
17
15
|
return ((validation && validation.meta && validation.meta.template_errors) || []);
|
|
18
16
|
}
|
|
19
17
|
function printHublValidationError(err) {
|
|
20
18
|
const { severity, message, lineno, startPosition } = err;
|
|
21
19
|
const method = severity === 'FATAL' ? 'error' : 'warn';
|
|
22
|
-
logger[method]('[%d, %d]: %s', lineno, startPosition, message);
|
|
20
|
+
logger_1.logger[method]('[%d, %d]: %s', lineno, startPosition, message);
|
|
23
21
|
}
|
|
24
22
|
function printHublValidationResult({ file, validation }) {
|
|
25
23
|
let count = 0;
|
|
@@ -30,7 +28,7 @@ function printHublValidationResult({ file, validation }) {
|
|
|
30
28
|
if (!errors.length) {
|
|
31
29
|
return count;
|
|
32
30
|
}
|
|
33
|
-
logger.group(file);
|
|
31
|
+
logger_1.logger.group(file);
|
|
34
32
|
errors.forEach(err => {
|
|
35
33
|
if (err.reason !== 'SYNTAX_ERROR') {
|
|
36
34
|
return;
|
|
@@ -38,49 +36,52 @@ function printHublValidationResult({ file, validation }) {
|
|
|
38
36
|
++count;
|
|
39
37
|
printHublValidationError(err);
|
|
40
38
|
});
|
|
41
|
-
logger.groupEnd();
|
|
39
|
+
logger_1.logger.groupEnd();
|
|
42
40
|
return count;
|
|
43
41
|
}
|
|
44
|
-
|
|
45
|
-
const { path: lintPath } =
|
|
46
|
-
const
|
|
47
|
-
const
|
|
48
|
-
const groupName = i18n(`commands.lint.groupName`, {
|
|
42
|
+
async function handler(args) {
|
|
43
|
+
const { path: lintPath, derivedAccountId } = args;
|
|
44
|
+
const localPath = (0, filesystem_1.resolveLocalPath)(lintPath);
|
|
45
|
+
const groupName = (0, lang_1.i18n)(`commands.lint.groupName`, {
|
|
49
46
|
path: localPath,
|
|
50
47
|
});
|
|
51
|
-
trackCommandUsage('lint',
|
|
52
|
-
logger.group(groupName);
|
|
48
|
+
(0, usageTracking_1.trackCommandUsage)('lint', undefined, derivedAccountId);
|
|
49
|
+
logger_1.logger.group(groupName);
|
|
53
50
|
let count = 0;
|
|
54
51
|
try {
|
|
55
|
-
await lint(derivedAccountId, localPath, result => {
|
|
56
|
-
count += printHublValidationResult(result);
|
|
52
|
+
await (0, validate_1.lint)(derivedAccountId, localPath, (result) => {
|
|
53
|
+
return (count += printHublValidationResult(result));
|
|
57
54
|
});
|
|
58
55
|
}
|
|
59
56
|
catch (err) {
|
|
60
|
-
logger.groupEnd(
|
|
61
|
-
logError(err, { accountId: derivedAccountId });
|
|
62
|
-
process.exit(EXIT_CODES.ERROR);
|
|
57
|
+
logger_1.logger.groupEnd();
|
|
58
|
+
(0, index_1.logError)(err, { accountId: derivedAccountId });
|
|
59
|
+
process.exit(exitCodes_1.EXIT_CODES.ERROR);
|
|
63
60
|
}
|
|
64
|
-
logger.groupEnd(
|
|
65
|
-
logger.log(i18n(`commands.lint.issuesFound`, {
|
|
61
|
+
logger_1.logger.groupEnd();
|
|
62
|
+
logger_1.logger.log((0, lang_1.i18n)(`commands.lint.issuesFound`, {
|
|
66
63
|
count,
|
|
67
64
|
}));
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
const builder = yargs => {
|
|
71
|
-
addConfigOptions(yargs);
|
|
72
|
-
addAccountOptions(yargs);
|
|
73
|
-
addGlobalOptions(yargs);
|
|
65
|
+
}
|
|
66
|
+
function lintBuilder(yargs) {
|
|
74
67
|
yargs.positional('path', {
|
|
75
|
-
describe: i18n(`commands.lint.positionals.path.describe`),
|
|
68
|
+
describe: (0, lang_1.i18n)(`commands.lint.positionals.path.describe`),
|
|
69
|
+
required: true,
|
|
76
70
|
type: 'string',
|
|
77
71
|
});
|
|
78
72
|
return yargs;
|
|
73
|
+
}
|
|
74
|
+
const builder = (0, yargsUtils_1.makeYargsBuilder)(lintBuilder, command, describe, {
|
|
75
|
+
useGlobalOptions: true,
|
|
76
|
+
useConfigOptions: true,
|
|
77
|
+
useAccountOptions: true,
|
|
78
|
+
});
|
|
79
|
+
const lintCommand = {
|
|
80
|
+
command,
|
|
81
|
+
describe,
|
|
82
|
+
handler,
|
|
83
|
+
builder,
|
|
79
84
|
};
|
|
80
|
-
exports.
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
handler: exports.handler,
|
|
84
|
-
command: exports.command,
|
|
85
|
-
describe: exports.describe,
|
|
86
|
-
};
|
|
85
|
+
exports.default = lintCommand;
|
|
86
|
+
// TODO Remove this after cli.ts is ported to TS
|
|
87
|
+
module.exports = lintCommand;
|
package/commands/list.d.ts
CHANGED
|
@@ -1,10 +1,6 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { AccountArgs, CommonArgs, ConfigArgs, EnvironmentArgs } from '../types/Yargs';
|
|
3
|
-
export declare const command = "list [path]";
|
|
4
|
-
export declare const describe: string;
|
|
1
|
+
import { AccountArgs, CommonArgs, ConfigArgs, EnvironmentArgs, YargsCommandModule } from '../types/Yargs';
|
|
5
2
|
type ListArgs = CommonArgs & ConfigArgs & EnvironmentArgs & AccountArgs & {
|
|
6
3
|
path: string;
|
|
7
4
|
};
|
|
8
|
-
|
|
9
|
-
export
|
|
10
|
-
export {};
|
|
5
|
+
declare const cmsListCommand: YargsCommandModule<unknown, ListArgs>;
|
|
6
|
+
export default cmsListCommand;
|