Skip to content

Commit

Permalink
keep around generated files for build
Browse files Browse the repository at this point in the history
  • Loading branch information
ashmortar committed Aug 1, 2024
1 parent a55f065 commit 38c3efc
Show file tree
Hide file tree
Showing 3 changed files with 425 additions and 2 deletions.
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@ yarn-debug.log*
yarn-error.log*
lerna-debug.log*

# Generated files
/generated

# OS
.DS_Store
Expand Down
87 changes: 87 additions & 0 deletions generated/i18n/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@
/* DO NOT EDIT, file generated by nestjs-i18n */

/* eslint-disable */
/* prettier-ignore */
import { Path } from "nestjs-i18n";
/* prettier-ignore */
export type I18nTranslations = {
"about": {
"title": string;
"description": string;
};
"auth": {
"sign_in": {
"title": string;
"email": string;
"password": string;
"sign_in": string;
"forgot_password": string;
"no_account": string;
"google": string;
"submit": string;
};
"register": {
"title": string;
"email": string;
"password": string;
"confirm_password": string;
"register": string;
"already_have_account": string;
"google": string;
"submit": string;
};
"forgot_password": {
"title": string;
"email": string;
"forgot_pass": string;
"remember_password": string;
"no_account": string;
"submit": string;
};
};
"contact": {
"title": string;
"description": string;
};
"meta": {
"title": string;
"description": string;
};
"privacy": {
"title": string;
"description": string;
};
"root": {
"links": {
"home": string;
"about": string;
"contact": string;
"privacy": string;
"tou": string;
"sign_in": string;
"register": string;
"profile": string;
};
"app_name": string;
"welcome": string;
"description": string;
};
"tou": {
"title": string;
"description": string;
};
"main": {
"links": {
"home": string;
"about": string;
"contact": string;
"privacy": string;
"tou": string;
};
"app_name": string;
"welcome": string;
"description": string;
};
};
/* prettier-ignore */
export type I18nPath = Path<I18nTranslations>;
Loading

0 comments on commit 38c3efc

Please sign in to comment.