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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user