@intlayer/config
Version:
Retrieve Intlayer configurations and manage environment variables for both server-side and client-side environments.
10 lines • 1.19 kB
TypeScript
import { BrowserIntlayerConfig, buildBrowserConfiguration, buildEditorFields, buildInternationalizationFields, buildLogFields, buildRoutingFields, extractBrowserConfiguration } from "./configFile/buildBrowserConfiguration.js";
import { extractErrorMessage } from "./utils/extractErrorMessage.js";
import { logStack } from "./utils/logStack.js";
import { normalizePath } from "./utils/normalizePath.js";
import { WindowsWithIntlayer, setIntlayerIdentifier } from "./utils/setIntlayerIdentifier.js";
import { camelCaseToKebabCase } from "./utils/stringFormatter/camelCaseToKebabCase.js";
import { camelCaseToSentence } from "./utils/stringFormatter/camelCaseToSentence.js";
import { kebabCaseToCamelCase } from "./utils/stringFormatter/kebabCaseToCamelCase.js";
import { toLowerCamelCase } from "./utils/stringFormatter/toLowerCamelCase.js";
export { BrowserIntlayerConfig, WindowsWithIntlayer, buildBrowserConfiguration, buildEditorFields, buildInternationalizationFields, buildLogFields, buildRoutingFields, camelCaseToKebabCase, camelCaseToSentence, extractBrowserConfiguration, extractErrorMessage, kebabCaseToCamelCase, logStack, normalizePath, setIntlayerIdentifier, toLowerCamelCase };