Skip to content

Commit

Permalink
merge next
Browse files Browse the repository at this point in the history
  • Loading branch information
camden11 committed Dec 16, 2024
1 parent 6b290e1 commit f31b0ff
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/projects/structure.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import * as path from 'path';
import { ValueOf } from '@hubspot/local-dev-lib/types/Utils';
import { walk } from '@hubspot/local-dev-lib/fs';
import { logger } from '@hubspot/local-dev-lib/logger';
import { logError } from './errorHandlers/index';
import { logError } from '../errorHandlers/index';

export type Component = {
type: ComponentTypes;
Expand Down Expand Up @@ -207,9 +207,9 @@ export async function findProjectComponents(
return components;
}

export function getProjectComponentTypes(
components: Array<Component>
): { [key in ComponentTypes]?: boolean } {
export function getProjectComponentTypes(components: Array<Component>): {
[key in ComponentTypes]?: boolean;
} {
const projectContents: { [key in ComponentTypes]?: boolean } = {};

components.forEach(({ type }) => (projectContents[type] = true));
Expand Down

0 comments on commit f31b0ff

Please sign in to comment.