Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove deleted configs in export #122

Merged
merged 1 commit into from
Oct 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 14 additions & 16 deletions index.ts
Original file line number Diff line number Diff line change
@@ -1,22 +1,20 @@
import countries from './config/countries.json';
import marketsV4 from './v4/staging/markets.json';
import versionIos from './config/version_ios.json';
import walletConnect from './wallet_connect';
import { APP } from './config/localization/app';
import marketsV4 from "./v4/staging/markets.json";
import walletConnect from "./wallet_connect";
import { APP } from "./config/localization/app";

export { TOOLTIPS } from './config/localization/tooltip';
export { APP_STRING_KEYS, ERRORS_STRING_KEYS, WARNINGS_STRING_KEYS, TOKEN_MIGRATION_STRING_KEYS } from './scripts/generated/app';
export { TOOLTIP_STRING_KEYS } from './scripts/generated/tooltips';
export { APP_NATIVE } from './config/localizations_native';
export { NOTIFICATIONS} from './config/localization_notifications';
export { NOTIFICATIONS_STRING_KEYS } from './scripts/generated/notifications';
export { TOOLTIPS } from "./config/localization/tooltip";
export {
APP_STRING_KEYS,
ERRORS_STRING_KEYS,
WARNINGS_STRING_KEYS,
TOKEN_MIGRATION_STRING_KEYS,
} from "./scripts/generated/app";
export { TOOLTIP_STRING_KEYS } from "./scripts/generated/tooltips";
export { APP_NATIVE } from "./config/localizations_native";
export { NOTIFICATIONS } from "./config/localization_notifications";
export { NOTIFICATIONS_STRING_KEYS } from "./scripts/generated/notifications";

export { DEV_ENDPOINTS, ENDPOINTS_STAGING, WALLETS_V2_STAGING } from './config/staging';
export { ENDPOINTS, WALLETS_V2_PRODUCTION } from './config/prod';

export const COUNTRIES = countries;
export const MARKETS_V4 = marketsV4;
export const VERSION_IOS = versionIos;
export const WALLET_CONNECT = walletConnect;

export type SupportedLocale = keyof typeof APP;
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dydxprotocol/v4-localization",
"version": "0.1.34",
"version": "0.1.35",
"description": "v4 localization",
"main": "index.ts",
"scripts": {
Expand Down