- Extract the release archive to a new directory, rename it to your project name and browse the directory.
- Install all dependencies using
npm
clean install command.
$ npm ci
More on the clean install npm command can be read here
npm ci
You can still use
npm install
in cases thenpm ci
raises system error due to specific platform incompatibilities.
- SASS/PostCSS files are located under
src/scss/
- JavaScript files with support of latest ECMAScript ES6 / ECMAScript 2016(ES7)/ etc files are located under
src/js/
- Image files are located under
src/images/
- Font files are located under
src/fonts/
- HTML files are located under
src/
- It will automatically build all HTML files placed under
src/
directory, no need to manually configure each template anymore!
- It will automatically build all HTML files placed under
$ npm run build
$ npm run dev
Optimize assets for production by:
$ npm run production
- CSS files are located under
/dist/css/
- JavaScript files with support of ES6 / ECMAScript 2016(ES7) files are located under
/dist/js/
- Images are located under
/dist/images/
- Images part of the design (usually referenced in the CSS) are located under
/dist/images/design/
- Images part of the content (usually referenced via
<img>
tags) are located under/dist/images/content/
- Images part of the design (usually referenced in the CSS) are located under
- Fonts are located under
/dist/fonts/
- HTML files are located under
/dist/