Gulp
Learn how to use Vodi's included npm scripts to automate your time-consuming tasks in your development workflow with Gulp toolkit.
Tooling setup
Vodi uses NPM scripts for its build system. Our package.json
includes convenient methods for working with the framework, including compiling code, minification js/css files and more.
TL;DR To use our build system and run our documentation locally, you'll need a copy of Vodi's source files and NodeJS. Follow these steps and you should be ready to rock:
- Download and install Node.js , which we use to manage our dependencies. If Node.js is already installed in your machine, please make sure the installed version is above
v12
and jump to step 2. - Navigate to the root
/vodi
directory and runnpm install
to install our local dependencies listed inpackage.json
. - Run
gulp
command.
Yup, that's it.
Installing Node.js
If you do not have Node installed already, you can get it by downloading the package installer from Node's website. Please download the stable version of Node.js (LTS) NOT the latest.
You need to have Node.js (Node) installed onto your computer before you can install Gulp. When you're done with installing Node, you can install Gulp by using the following command in the command line:
Installing NPM modules
First, change the command line path into your project where Vodi folder is located. if you have not done this before, you may check the following article to quick start Command Prompt - How to use the simple, basic commands .
Once the path of your workflow is changed to Vodi folder, you may run package.json
file by using the following command:
npm install
This time, we're installing Gulp with its all dependency plugins like gulp-sass
, gulp-autoprefixer
and etc. It might take a couple of minutes depends on your internet connection.
If you check the project folder when the command has finished executing, you should see that Gulp has created a node_modules
folder.
Run Gulp
Now we have an integrated workflow. To try it out run:
gulp
Now you can try making some changes in your custom sass files at assets/scss/_user-variables.scss
or assets/scss/_user.scss
and save it.
Gulp dist
Explanation of how gulp dist
function in the Vodi Template works. The gulp dist
function contains 3 main functions that create the dist
folder and perform the following processes:
- Minifies CSS files from
assets/css/..
totheme.min.css
file and saves todist/assets/css/theme.min.css
- Combines and minimizes all JavaScript files from
assets/js/..
intotheme.min.js
file and saves todist/assets/js/theme.min.js
- Updates available libraries from NPM packages and copies the updated libraries to
dist/assets/vendor/..
To try it out run:
gulp dist
Note
As for the
assets/vendor/..
folder, note that these libraries are extracted from NPM, and some libraries are not updated in NPM, so we only extract up-to-date libraries from NPM, and this is the main reason that all libraries are not included in folderdist/vendor/..
All NPM libraries that are used in the Vodi template can be seen in the
package.json
file.
Autoprefixer
Vodi uses Autoprefixer (included in our build process) to automatically add vendor prefixes to some CSS properties at build time. Doing so saves us time and code by allowing us to write key parts of our CSS a single time while eliminating the need for vendor mixins.