Learn how to use CoreUI Icons's included npm scripts to compile source code, run tests, and more.
On this page:CoreUI Icons uses npm scripts for its build system. Our package.json includes convenient methods for working with the framework, including compiling code, running tests, and more.
To use our build system and run our documentation locally, you’ll need a copy of CoreUI Icons’s source files and Node. Follow these steps and you should be ready to rock:
/coreui-icons
directory and run npm install
to install our local dependencies listed in package.json.When completed, you’ll be able to run the various commands provided from the command line.
Our package.json includes the following commands and tasks:
Task | Description |
---|---|
npm run build |
npm run dist creates the /css/ directory with compiled files. Uses Sass, Autoprefixer, and terser. |
Run npm run
to see all the npm scripts.
CoreUI Icons uses Autoprefixer (included in our build process) to automatically add vendor prefixes to some CSS properties at build time.
Should you encounter problems with installing dependencies, uninstall all previous dependency versions (global and local). Then, rerun npm install
.