You should have node and npm installed in your system. After install npm, need to install GULP following this steps:
- run
npm install gulp-cli -g
- run
npm install gulp -D
- Check if its installed with
gulp --help
To begin using this app, follow steps to get started:
- Clone the repo
- Run
npm install
- After this run
gulp dev
which will launch the application in your local
After installation, run npm install
and then run gulp dev
which will open up a preview of the application in your default browser, watch for changes to core application files, and live reload the browser when changes are saved. You can view the gulpfile.js
to see which tasks are included with the dev environment.
gulp
the default task that builds everythinggulp dev
browserSync opens the project in your default browser and live reloads when changes are madegulp sass
compiles SCSS files into CSSgulp minify-css
minifies the compiled CSS filegulp minify-js
minifies the themes JS filegulp copy
copies dependencies from node_modules to the vendor directory