forked from mui/material-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[core] Remove babel-node for server/shared modules (mui#15764)
* Replace babel-node scripts with node * Simplify imports * Simplify imports * Simplify imports * Simplify imports * Revert undecessary changes and docs:i18n script * Poke codecov Co-authored-by: Sebastian Silbermann <[email protected]>
- Loading branch information
Showing
11 changed files
with
78 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,22 @@ | ||
export const CODE_VARIANTS = { | ||
const CODE_VARIANTS = { | ||
JS: 'JS', | ||
TS: 'TS', | ||
}; | ||
|
||
export const ACTION_TYPES = { | ||
const ACTION_TYPES = { | ||
THEME_CHANGE: 'THEME_CHANGE', | ||
OPTIONS_CHANGE: 'OPTIONS_CHANGE', | ||
}; | ||
|
||
// Active | ||
export const LANGUAGES = ['en', 'zh', 'ru', 'pt', 'fr', 'es', 'de']; | ||
const LANGUAGES = ['en', 'zh', 'ru', 'pt', 'fr', 'es', 'de']; | ||
|
||
// Work in progress | ||
export const LANGUAGES_IN_PROGRESS = ['en', 'zh', 'ru', 'pt', 'fr', 'es', 'de', 'ja']; | ||
const LANGUAGES_IN_PROGRESS = ['en', 'zh', 'ru', 'pt', 'fr', 'es', 'de', 'ja']; | ||
|
||
module.exports = { | ||
CODE_VARIANTS, | ||
ACTION_TYPES, | ||
LANGUAGES, | ||
LANGUAGES_IN_PROGRESS, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters