You will need to have node setup on your machine. That will output the built distributables to ./dist/* and ./examples/*.html.
Step 1. Download the latest version from Github. For nodejs you have to install some dependencies.
$ git clone git://github.com/xizon/uix-documentation.gitStep 2. First, using an absolute path into your "uix-documentation/" folder directory.
$ cd /{your_directory}/uix-documentationStep 3. Before doing all dev stuff make sure you have Node 10+ installed. After that, run the following code in the main directory to install the node module dependencies.
$ sudo npm install --only=dev --unsafe-perm --productionStep 4. Run the following code to enter development mode. The converted ES5 files will be created.
$ npm run buildStep 5. When you done, this will spin up a server that can be accessed at
http://localhost:8080/examples/ERROR: npm update check failed.
$ sudo chown -R $USER:$(id -gn $USER) /Users/{username}/.configuix-documentation/
├── README.md
├── LICENSE
├── webpack.config.js
├── package-lock.json
├── package.json
├── dist/
│ ├── css/
│ │ ├── app.css
│ │ ├── app.css.map
│ │ ├── app.min.css
│ │ └── app.min.css.map
│ └── js/
│ │ ├── app.js
│ │ ├── app.js.map
│ │ ├── app.min.js
│ │ └── app.min.js.map
├── src/
│ ├── index.js
│ ├── components/
├── examples/
└──Licensed under the MIT.