@hubspot/cli 7.7.26-experimental.0 → 7.7.27-experimental.1
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/commands/mcp/start.d.ts +0 -1
- package/commands/mcp/start.js +2 -7
- package/mcp-server/tools/project/AddFeatureToProjectTool.js +1 -1
- package/mcp-server/tools/project/CreateProjectTool.js +1 -1
- package/mcp-server/tools/project/DeployProjectTool.js +1 -1
- package/mcp-server/tools/project/UploadProjectTools.js +1 -1
- package/mcp-server/tools/project/ValidateProjectTool.js +1 -1
- package/mcp-server/tools/project/__tests__/AddFeatureToProjectTool.test.js +2 -2
- package/mcp-server/tools/project/__tests__/CreateProjectTool.test.js +2 -2
- package/mcp-server/tools/project/__tests__/DeployProjectTool.test.js +2 -2
- package/mcp-server/tools/project/__tests__/UploadProjectTools.test.js +2 -2
- package/mcp-server/tools/project/__tests__/ValidateProjectTool.test.js +2 -2
- package/mcp-server/utils/__tests__/command.test.js +3 -76
- package/mcp-server/utils/__tests__/project.test.d.ts +1 -0
- package/mcp-server/utils/__tests__/project.test.js +79 -0
- package/mcp-server/utils/command.d.ts +0 -6
- package/mcp-server/utils/command.js +0 -20
- package/mcp-server/utils/project.d.ts +5 -0
- package/mcp-server/utils/project.js +14 -0
- package/package.json +2 -2
package/commands/mcp/start.d.ts
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { CommonArgs, YargsCommandModule } from '../../types/Yargs.js';
|
|
2
2
|
interface McpStartArgs extends CommonArgs {
|
|
3
3
|
aiAgent: string;
|
|
4
|
-
standAloneMode: boolean;
|
|
5
4
|
}
|
|
6
5
|
declare const mcpStartCommand: YargsCommandModule<unknown, McpStartArgs>;
|
|
7
6
|
export default mcpStartCommand;
|
package/commands/mcp/start.js
CHANGED
|
@@ -22,10 +22,9 @@ async function handler(args) {
|
|
|
22
22
|
process.exit(EXIT_CODES.ERROR);
|
|
23
23
|
}
|
|
24
24
|
trackCommandUsage('mcp-start', {}, args.derivedAccountId);
|
|
25
|
-
await startMcpServer(args);
|
|
25
|
+
await startMcpServer(args.aiAgent);
|
|
26
26
|
}
|
|
27
|
-
async function startMcpServer(
|
|
28
|
-
const { aiAgent, standAloneMode } = args;
|
|
27
|
+
async function startMcpServer(aiAgent) {
|
|
29
28
|
try {
|
|
30
29
|
const serverPath = path.join(__dirname, '..', '..', 'mcp-server', 'server.js');
|
|
31
30
|
// Check if server file exists
|
|
@@ -42,7 +41,6 @@ async function startMcpServer(args) {
|
|
|
42
41
|
env: {
|
|
43
42
|
...process.env,
|
|
44
43
|
HUBSPOT_MCP_AI_AGENT: aiAgent || 'unknown',
|
|
45
|
-
HUBSPOT_MCP_STANDALONE_MODE: `${standAloneMode}`,
|
|
46
44
|
},
|
|
47
45
|
});
|
|
48
46
|
// Handle server process events
|
|
@@ -68,9 +66,6 @@ function startBuilder(yargs) {
|
|
|
68
66
|
yargs.option('ai-agent', {
|
|
69
67
|
type: 'string',
|
|
70
68
|
});
|
|
71
|
-
yargs.option('stand-alone-mode', {
|
|
72
|
-
type: 'boolean',
|
|
73
|
-
});
|
|
74
69
|
return yargs;
|
|
75
70
|
}
|
|
76
71
|
const builder = makeYargsBuilder(startBuilder, command, describe, {
|
|
@@ -3,7 +3,7 @@ import { z } from 'zod';
|
|
|
3
3
|
import { APP_AUTH_TYPES, APP_DISTRIBUTION_TYPES, } from '../../../lib/constants.js';
|
|
4
4
|
import { addFlag } from '../../utils/command.js';
|
|
5
5
|
import { absoluteProjectPath, features } from './constants.js';
|
|
6
|
-
import { runCommandInDir } from '../../utils/
|
|
6
|
+
import { runCommandInDir } from '../../utils/project.js';
|
|
7
7
|
import { formatTextContents, formatTextContent } from '../../utils/content.js';
|
|
8
8
|
import { trackToolUsage } from '../../utils/toolUsageTracking.js';
|
|
9
9
|
const inputSchema = {
|
|
@@ -3,7 +3,7 @@ import { z } from 'zod';
|
|
|
3
3
|
import { APP_AUTH_TYPES, APP_DISTRIBUTION_TYPES, EMPTY_PROJECT, PROJECT_WITH_APP, } from '../../../lib/constants.js';
|
|
4
4
|
import { addFlag } from '../../utils/command.js';
|
|
5
5
|
import { absoluteCurrentWorkingDirectory, features } from './constants.js';
|
|
6
|
-
import { runCommandInDir } from '../../utils/
|
|
6
|
+
import { runCommandInDir } from '../../utils/project.js';
|
|
7
7
|
import { formatTextContents, formatTextContent } from '../../utils/content.js';
|
|
8
8
|
import { trackToolUsage } from '../../utils/toolUsageTracking.js';
|
|
9
9
|
const inputSchema = {
|
|
@@ -2,7 +2,7 @@ import { Tool } from '../../types.js';
|
|
|
2
2
|
import { z } from 'zod';
|
|
3
3
|
import { addFlag } from '../../utils/command.js';
|
|
4
4
|
import { absoluteProjectPath } from './constants.js';
|
|
5
|
-
import { runCommandInDir } from '../../utils/
|
|
5
|
+
import { runCommandInDir } from '../../utils/project.js';
|
|
6
6
|
import { formatTextContents, formatTextContent } from '../../utils/content.js';
|
|
7
7
|
import { trackToolUsage } from '../../utils/toolUsageTracking.js';
|
|
8
8
|
const inputSchema = {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Tool } from '../../types.js';
|
|
2
|
-
import { runCommandInDir } from '../../utils/
|
|
2
|
+
import { runCommandInDir } from '../../utils/project.js';
|
|
3
3
|
import { absoluteProjectPath } from './constants.js';
|
|
4
4
|
import z from 'zod';
|
|
5
5
|
import { formatTextContents } from '../../utils/content.js';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Tool } from '../../types.js';
|
|
2
2
|
import { z } from 'zod';
|
|
3
3
|
import { absoluteProjectPath } from './constants.js';
|
|
4
|
-
import { runCommandInDir } from '../../utils/
|
|
4
|
+
import { runCommandInDir } from '../../utils/project.js';
|
|
5
5
|
import { formatTextContents } from '../../utils/content.js';
|
|
6
6
|
import { trackToolUsage } from '../../utils/toolUsageTracking.js';
|
|
7
7
|
const inputSchema = {
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { AddFeatureToProjectTool, } from '../AddFeatureToProjectTool.js';
|
|
2
|
-
import { runCommandInDir } from '../../../utils/
|
|
2
|
+
import { runCommandInDir } from '../../../utils/project.js';
|
|
3
3
|
import { addFlag } from '../../../utils/command.js';
|
|
4
4
|
import { APP_AUTH_TYPES, APP_DISTRIBUTION_TYPES, } from '../../../../lib/constants.js';
|
|
5
5
|
vi.mock('@modelcontextprotocol/sdk/server/mcp.js');
|
|
6
|
-
vi.mock('../../../utils/
|
|
6
|
+
vi.mock('../../../utils/project');
|
|
7
7
|
vi.mock('../../../utils/command');
|
|
8
8
|
vi.mock('../../../../lib/constants');
|
|
9
9
|
vi.mock('../../../utils/toolUsageTracking');
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { CreateProjectTool, } from '../CreateProjectTool.js';
|
|
2
|
-
import { runCommandInDir } from '../../../utils/
|
|
2
|
+
import { runCommandInDir } from '../../../utils/project.js';
|
|
3
3
|
import { addFlag } from '../../../utils/command.js';
|
|
4
4
|
import { APP_DISTRIBUTION_TYPES, EMPTY_PROJECT, PROJECT_WITH_APP, } from '../../../../lib/constants.js';
|
|
5
5
|
vi.mock('@modelcontextprotocol/sdk/server/mcp.js');
|
|
6
|
-
vi.mock('../../../utils/
|
|
6
|
+
vi.mock('../../../utils/project');
|
|
7
7
|
vi.mock('../../../utils/command');
|
|
8
8
|
vi.mock('../../../../lib/constants');
|
|
9
9
|
vi.mock('../../../../lib/projects/create/v3');
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { DeployProjectTool } from '../DeployProjectTool.js';
|
|
2
|
-
import { runCommandInDir } from '../../../utils/
|
|
2
|
+
import { runCommandInDir } from '../../../utils/project.js';
|
|
3
3
|
import { addFlag } from '../../../utils/command.js';
|
|
4
4
|
vi.mock('@modelcontextprotocol/sdk/server/mcp.js');
|
|
5
|
-
vi.mock('../../../utils/
|
|
5
|
+
vi.mock('../../../utils/project');
|
|
6
6
|
vi.mock('../../../utils/command');
|
|
7
7
|
vi.mock('../../../utils/toolUsageTracking');
|
|
8
8
|
const mockRunCommandInDir = runCommandInDir;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { UploadProjectTools } from '../UploadProjectTools.js';
|
|
2
|
-
import { runCommandInDir } from '../../../utils/
|
|
2
|
+
import { runCommandInDir } from '../../../utils/project.js';
|
|
3
3
|
vi.mock('@modelcontextprotocol/sdk/server/mcp.js');
|
|
4
|
-
vi.mock('../../../utils/
|
|
4
|
+
vi.mock('../../../utils/project');
|
|
5
5
|
vi.mock('../../../utils/toolUsageTracking');
|
|
6
6
|
const mockRunCommandInDir = runCommandInDir;
|
|
7
7
|
describe('mcp-server/tools/project/UploadProjectTools', () => {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ValidateProjectTool, } from '../ValidateProjectTool.js';
|
|
2
|
-
import { runCommandInDir } from '../../../utils/
|
|
2
|
+
import { runCommandInDir } from '../../../utils/project.js';
|
|
3
3
|
vi.mock('@modelcontextprotocol/sdk/server/mcp.js');
|
|
4
|
-
vi.mock('../../../utils/
|
|
4
|
+
vi.mock('../../../utils/project');
|
|
5
5
|
vi.mock('../../../utils/toolUsageTracking');
|
|
6
6
|
const mockRunCommandInDir = runCommandInDir;
|
|
7
7
|
describe('mcp-server/tools/project/ValidateProjectTool', () => {
|
|
@@ -1,17 +1,7 @@
|
|
|
1
|
-
import { addFlag
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
vi.mock('../command');
|
|
5
|
-
vi.mock('fs');
|
|
6
|
-
vi.mock('path');
|
|
7
|
-
const mockExecAsync = execAsync;
|
|
8
|
-
const mockExistsSync = fs.existsSync;
|
|
9
|
-
const mockMkdirSync = fs.mkdirSync;
|
|
10
|
-
const mockResolve = path.resolve;
|
|
1
|
+
import { addFlag } from '../command.js';
|
|
2
|
+
vi.mock('child_process');
|
|
3
|
+
vi.mock('util');
|
|
11
4
|
describe('mcp-server/utils/command', () => {
|
|
12
|
-
beforeEach(() => {
|
|
13
|
-
vi.clearAllMocks();
|
|
14
|
-
});
|
|
15
5
|
describe('addFlag', () => {
|
|
16
6
|
it('should add string flag to command', () => {
|
|
17
7
|
const result = addFlag('hs project create', 'name', 'test-project');
|
|
@@ -52,67 +42,4 @@ describe('mcp-server/utils/command', () => {
|
|
|
52
42
|
expect(result).toBe('hs project create --features "card with spaces" "settings"');
|
|
53
43
|
});
|
|
54
44
|
});
|
|
55
|
-
describe('runCommandInDir', () => {
|
|
56
|
-
const mockDirectory = '/test/directory';
|
|
57
|
-
const mockCommand = 'npm install';
|
|
58
|
-
const mockResolvedPath = '/resolved/test/directory';
|
|
59
|
-
beforeEach(() => {
|
|
60
|
-
mockResolve.mockReturnValue(mockResolvedPath);
|
|
61
|
-
});
|
|
62
|
-
it('should run command in existing directory', async () => {
|
|
63
|
-
const expectedResult = {
|
|
64
|
-
stdout: 'command output',
|
|
65
|
-
stderr: '',
|
|
66
|
-
};
|
|
67
|
-
mockExistsSync.mockReturnValue(true);
|
|
68
|
-
mockExecAsync.mockResolvedValue(expectedResult);
|
|
69
|
-
const result = await runCommandInDir(mockDirectory, mockCommand);
|
|
70
|
-
expect(mockExistsSync).toHaveBeenCalledWith(mockDirectory);
|
|
71
|
-
expect(mockMkdirSync).not.toHaveBeenCalled();
|
|
72
|
-
expect(mockResolve).toHaveBeenCalledWith(mockDirectory);
|
|
73
|
-
expect(mockExecAsync).toHaveBeenCalledWith(mockCommand, expect.objectContaining({
|
|
74
|
-
cwd: mockResolvedPath,
|
|
75
|
-
env: expect.any(Object),
|
|
76
|
-
}));
|
|
77
|
-
expect(result).toEqual(expectedResult);
|
|
78
|
-
});
|
|
79
|
-
it('should create directory if it does not exist', async () => {
|
|
80
|
-
const expectedResult = {
|
|
81
|
-
stdout: 'command output',
|
|
82
|
-
stderr: '',
|
|
83
|
-
};
|
|
84
|
-
mockExistsSync.mockReturnValue(false);
|
|
85
|
-
mockExecAsync.mockResolvedValue(expectedResult);
|
|
86
|
-
const result = await runCommandInDir(mockDirectory, mockCommand);
|
|
87
|
-
expect(mockExistsSync).toHaveBeenCalledWith(mockDirectory);
|
|
88
|
-
expect(mockMkdirSync).toHaveBeenCalledWith(mockDirectory);
|
|
89
|
-
expect(mockResolve).toHaveBeenCalledWith(mockDirectory);
|
|
90
|
-
expect(mockExecAsync).toHaveBeenCalledWith(mockCommand, expect.objectContaining({
|
|
91
|
-
cwd: mockResolvedPath,
|
|
92
|
-
env: expect.any(Object),
|
|
93
|
-
}));
|
|
94
|
-
expect(result).toEqual(expectedResult);
|
|
95
|
-
});
|
|
96
|
-
it('should propagate execAsync errors', async () => {
|
|
97
|
-
const error = new Error('Command failed');
|
|
98
|
-
mockExistsSync.mockReturnValue(true);
|
|
99
|
-
mockExecAsync.mockRejectedValue(error);
|
|
100
|
-
await expect(runCommandInDir(mockDirectory, mockCommand)).rejects.toThrow('Command failed');
|
|
101
|
-
expect(mockExecAsync).toHaveBeenCalledWith(mockCommand, expect.objectContaining({
|
|
102
|
-
cwd: mockResolvedPath,
|
|
103
|
-
env: expect.any(Object),
|
|
104
|
-
}));
|
|
105
|
-
});
|
|
106
|
-
it('should handle stderr in results', async () => {
|
|
107
|
-
const expectedResult = {
|
|
108
|
-
stdout: 'some output',
|
|
109
|
-
stderr: 'warning message',
|
|
110
|
-
};
|
|
111
|
-
mockExistsSync.mockReturnValue(true);
|
|
112
|
-
mockExecAsync.mockResolvedValue(expectedResult);
|
|
113
|
-
const result = await runCommandInDir(mockDirectory, mockCommand);
|
|
114
|
-
expect(result.stdout).toBe('some output');
|
|
115
|
-
expect(result.stderr).toBe('warning message');
|
|
116
|
-
});
|
|
117
|
-
});
|
|
118
45
|
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
import { runCommandInDir } from '../project.js';
|
|
2
|
+
import { execAsync } from '../command.js';
|
|
3
|
+
import fs from 'fs';
|
|
4
|
+
import path from 'path';
|
|
5
|
+
vi.mock('../command');
|
|
6
|
+
vi.mock('fs');
|
|
7
|
+
vi.mock('path');
|
|
8
|
+
const mockExecAsync = execAsync;
|
|
9
|
+
const mockExistsSync = fs.existsSync;
|
|
10
|
+
const mockMkdirSync = fs.mkdirSync;
|
|
11
|
+
const mockResolve = path.resolve;
|
|
12
|
+
describe('mcp-server/utils/project', () => {
|
|
13
|
+
beforeEach(() => {
|
|
14
|
+
vi.clearAllMocks();
|
|
15
|
+
});
|
|
16
|
+
describe('runCommandInDir', () => {
|
|
17
|
+
const mockDirectory = '/test/directory';
|
|
18
|
+
const mockCommand = 'npm install';
|
|
19
|
+
const mockResolvedPath = '/resolved/test/directory';
|
|
20
|
+
beforeEach(() => {
|
|
21
|
+
mockResolve.mockReturnValue(mockResolvedPath);
|
|
22
|
+
});
|
|
23
|
+
it('should run command in existing directory', async () => {
|
|
24
|
+
const expectedResult = {
|
|
25
|
+
stdout: 'command output',
|
|
26
|
+
stderr: '',
|
|
27
|
+
};
|
|
28
|
+
mockExistsSync.mockReturnValue(true);
|
|
29
|
+
mockExecAsync.mockResolvedValue(expectedResult);
|
|
30
|
+
const result = await runCommandInDir(mockDirectory, mockCommand);
|
|
31
|
+
expect(mockExistsSync).toHaveBeenCalledWith(mockDirectory);
|
|
32
|
+
expect(mockMkdirSync).not.toHaveBeenCalled();
|
|
33
|
+
expect(mockResolve).toHaveBeenCalledWith(mockDirectory);
|
|
34
|
+
expect(mockExecAsync).toHaveBeenCalledWith(mockCommand, expect.objectContaining({
|
|
35
|
+
cwd: mockResolvedPath,
|
|
36
|
+
env: expect.any(Object),
|
|
37
|
+
}));
|
|
38
|
+
expect(result).toEqual(expectedResult);
|
|
39
|
+
});
|
|
40
|
+
it('should create directory if it does not exist', async () => {
|
|
41
|
+
const expectedResult = {
|
|
42
|
+
stdout: 'command output',
|
|
43
|
+
stderr: '',
|
|
44
|
+
};
|
|
45
|
+
mockExistsSync.mockReturnValue(false);
|
|
46
|
+
mockExecAsync.mockResolvedValue(expectedResult);
|
|
47
|
+
const result = await runCommandInDir(mockDirectory, mockCommand);
|
|
48
|
+
expect(mockExistsSync).toHaveBeenCalledWith(mockDirectory);
|
|
49
|
+
expect(mockMkdirSync).toHaveBeenCalledWith(mockDirectory);
|
|
50
|
+
expect(mockResolve).toHaveBeenCalledWith(mockDirectory);
|
|
51
|
+
expect(mockExecAsync).toHaveBeenCalledWith(mockCommand, expect.objectContaining({
|
|
52
|
+
cwd: mockResolvedPath,
|
|
53
|
+
env: expect.any(Object),
|
|
54
|
+
}));
|
|
55
|
+
expect(result).toEqual(expectedResult);
|
|
56
|
+
});
|
|
57
|
+
it('should propagate execAsync errors', async () => {
|
|
58
|
+
const error = new Error('Command failed');
|
|
59
|
+
mockExistsSync.mockReturnValue(true);
|
|
60
|
+
mockExecAsync.mockRejectedValue(error);
|
|
61
|
+
await expect(runCommandInDir(mockDirectory, mockCommand)).rejects.toThrow('Command failed');
|
|
62
|
+
expect(mockExecAsync).toHaveBeenCalledWith(mockCommand, expect.objectContaining({
|
|
63
|
+
cwd: mockResolvedPath,
|
|
64
|
+
env: expect.any(Object),
|
|
65
|
+
}));
|
|
66
|
+
});
|
|
67
|
+
it('should handle stderr in results', async () => {
|
|
68
|
+
const expectedResult = {
|
|
69
|
+
stdout: 'some output',
|
|
70
|
+
stderr: 'warning message',
|
|
71
|
+
};
|
|
72
|
+
mockExistsSync.mockReturnValue(true);
|
|
73
|
+
mockExecAsync.mockResolvedValue(expectedResult);
|
|
74
|
+
const result = await runCommandInDir(mockDirectory, mockCommand);
|
|
75
|
+
expect(result.stdout).toBe('some output');
|
|
76
|
+
expect(result.stderr).toBe('warning message');
|
|
77
|
+
});
|
|
78
|
+
});
|
|
79
|
+
});
|
|
@@ -1,9 +1,3 @@
|
|
|
1
1
|
import { exec } from 'node:child_process';
|
|
2
|
-
export interface CommandResults {
|
|
3
|
-
stderr: string;
|
|
4
|
-
stdout: string;
|
|
5
|
-
}
|
|
6
2
|
export declare const execAsync: typeof exec.__promisify__;
|
|
7
|
-
export declare function wrapCommand(commandString: string): string;
|
|
8
3
|
export declare function addFlag(command: string, flagName: string, value: string | number | boolean | string[]): string;
|
|
9
|
-
export declare function runCommandInDir(directory: string, command: string): Promise<CommandResults>;
|
|
@@ -1,29 +1,9 @@
|
|
|
1
1
|
import util from 'util';
|
|
2
2
|
import { exec } from 'node:child_process';
|
|
3
|
-
import path from 'path';
|
|
4
|
-
import fs from 'fs';
|
|
5
|
-
import pkg from '../../package.json' with { type: 'json' };
|
|
6
3
|
export const execAsync = util.promisify(exec);
|
|
7
|
-
export function wrapCommand(commandString) {
|
|
8
|
-
if (process.env.HUBSPOT_MCP_STANDALONE_MODE) {
|
|
9
|
-
return `npx -y --package=@hubspot/cli@${pkg.version} ${commandString}`;
|
|
10
|
-
}
|
|
11
|
-
return commandString;
|
|
12
|
-
}
|
|
13
4
|
export function addFlag(command, flagName, value) {
|
|
14
5
|
if (Array.isArray(value)) {
|
|
15
6
|
return `${command} --${flagName} ${value.map(item => `"${item}"`).join(' ')}`;
|
|
16
7
|
}
|
|
17
8
|
return `${command} --${flagName} "${value}"`;
|
|
18
9
|
}
|
|
19
|
-
export async function runCommandInDir(directory, command) {
|
|
20
|
-
if (!fs.existsSync(directory)) {
|
|
21
|
-
fs.mkdirSync(directory);
|
|
22
|
-
}
|
|
23
|
-
return execAsync(wrapCommand(command), {
|
|
24
|
-
cwd: path.resolve(directory),
|
|
25
|
-
env: {
|
|
26
|
-
...process.env,
|
|
27
|
-
},
|
|
28
|
-
});
|
|
29
|
-
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { execAsync } from './command.js';
|
|
2
|
+
import path from 'path';
|
|
3
|
+
import fs from 'fs';
|
|
4
|
+
export async function runCommandInDir(directory, command) {
|
|
5
|
+
if (!fs.existsSync(directory)) {
|
|
6
|
+
fs.mkdirSync(directory);
|
|
7
|
+
}
|
|
8
|
+
return execAsync(command, {
|
|
9
|
+
cwd: path.resolve(directory),
|
|
10
|
+
env: {
|
|
11
|
+
...process.env,
|
|
12
|
+
},
|
|
13
|
+
});
|
|
14
|
+
}
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hubspot/cli",
|
|
3
|
-
"version": "7.7.
|
|
3
|
+
"version": "7.7.27-experimental.1",
|
|
4
4
|
"description": "The official CLI for developing on HubSpot",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"repository": "https://github.com/HubSpot/hubspot-cli",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"dependencies": {
|
|
9
9
|
"@hubspot/local-dev-lib": "3.16.0",
|
|
10
|
-
"@hubspot/project-parsing-lib": "0.
|
|
10
|
+
"@hubspot/project-parsing-lib": "0.0.21-experimental.2",
|
|
11
11
|
"@hubspot/serverless-dev-runtime": "7.0.6",
|
|
12
12
|
"@hubspot/theme-preview-dev-server": "0.0.10",
|
|
13
13
|
"@hubspot/ui-extensions-dev-server": "0.9.4",
|