felicious v1.0.0
FElicious - Front-End Boilerplate
This is a Front-End starter kit with Browserify, PostCSS, BrowserSync and more. A solution to build modern web applications with zero initial configuration.
https://felicious.netlify.com/
Features
Includes:
Requirements
Usage
First of all, install dependencies:
yarn install
If yarn install is giving an error, try deleting the file yarn.lock and run yarn install again.
Then, to start development run:
yarn startThis will build the project and watch for changes running BrowserSync to reload your browser.
To build for production:
yarn build
Advanced usage
There are specific tasks you can use to build particular assets, for example, you can compress images running gulp images. Below you can see the list of available tasks:
NOTE: You must have Gulp globally installed to use these tasks.
| Task | Details |
|---|---|
| styles | Transpile CSS |
| scripts | Transpile JS |
| images | Compress images |
| sprites | Generates sprites |
| views | Generate views |
| copy | Copy files from the root (like favicon.ico) to dist/ |
DEV mode
If you need to run any of this tasks in DEV mode, you have to append --dev, for example, to transpile JavaScript without compress the result use gulp scripts --dev. Also, you can build the entire project using gulp build --dev.
Questions?
If you have any questions, please feel free to ask through new issue.
License
Licensed under the MIT licence.
8 years ago