Sync built files (#17379)

as title, upload built files to local storage

---------

Co-authored-by: Charles Bochet <charles@twenty.com>
This commit is contained in:
martmull
2026-01-23 13:43:53 +01:00
committed by GitHub
parent 30620c79fd
commit 0091ef5f6c
134 changed files with 1051 additions and 416 deletions
@@ -1,10 +1,6 @@
import isObject from 'lodash.isobject';
import lodashCamelCase from 'lodash.camelcase';
import upperFirst from 'lodash.upperfirst';
import { type PascalCase, type PascalCasedPropertiesDeep } from 'type-fest';
export const pascalCase = <T>(text: T) =>
upperFirst(lodashCamelCase(text as unknown as string)) as PascalCase<T>;
import { type PascalCasedPropertiesDeep } from 'type-fest';
import { pascalCase } from 'twenty-shared/utils';
export const pascalCaseDeep = <T>(value: T): PascalCasedPropertiesDeep<T> => {
// Check if it's an array