This is documentation for checking in locale's information from iLib.
Here's a feature list that you can see:
- Basic Information
- Names of days and months
- Range of Meridiem Units
- Data Format : Date/Time
- Data Format : DateRange
- Data Format : Date/Time Duration
- Data Format : Number
and Please visit here to see the locale list.
See the release notes for details on what is new and what has changed.
This project is a simple app that was bootstrapped with Create React App and using MUI to display locale Spec references with iLib.
-
This project is already ejected(
eject
in CRA), so you need to maintain all of the configurations yourself. -
If you want to change the version of ILib or the root of this project, you can change them(
homepage
,dependencies
inpackage.json
, andbasename
insrc/index.js
).For example,
// package.json
...
"ilib": "npm:[email protected]",
...
"homepage": "http://i18n.lge.com/ilib/localeSpecDoc/reference",
...
// src/index.js
...
<BrowserRouter basename="/ilib/localeSpecDoc/reference">
...
- There is a script file to help the above #2 work easily.
First, Modifyutil/config.json
file. Then execute anpm run updatePath
in the root. You will find the data is updated properly as you expect. Here is an example of aconfig.json
file.
// config.json
{
"packages": {
"homepage": "http://i18n.lge.com/ilib/localeSpecDoc/reference",
"ilibVersion": "npm:[email protected]"
},
"index": {
"basename":"/ilib/localeSpecDoc/reference"
}
}
In the project directory, you can run:
Runs the app in the development mode.
Open http://localhost:3000 to view it in your browser.
The page will reload when you make changes.
You may also see any lint errors in the console.
Builds the app for production to the build
folder.
It correctly bundles React in production mode and optimizes the build for the best performance.
The build is minified and the filenames include the hashes.
Your app is ready to be deployed!
See the section about deployment for more information.