ish-ui
v1.1.4
Published
UI elements for onCourse and other ish apps
Downloads
220
Readme
Ish UI
UI elements for onCourse and other ish apps
Installation
To install you need to run following commands
Clone the repository :
git clone https://github.com/ishgroup/ish-ui.git
Install dependencies using NPM:
npm install
Start : Development
To develop and run your web application, you need to run following command :
npm start
Lint : Development
To lint application source code using ESLint via this command :
npm lint
Build : Production
Distribution files output will be generated in dist/
directory by default.
To build the production ready files for distribution, use the following command :
npm build
Serve : Production
Serve helps you serve a static site, single page application or just a static file. It also provides a neat interface for listing the directory's contents. This command serves build files from dist/
directory.
npm serve
Webpack Configurations
To make it easier for managing environment based webpack configurations, we using separated development
and production
configuration files, they are available in :
# Development webpack config
tools/webpack/webpack.config.dev.js
# Production webpack config
tools/webpack/webpack.config.prod.js