HTML Diff
0 added 0 removed
Original 2026-01-01
Modified 2026-02-21
1 <p>While you have been doing these courses, you've already got to know some of the systems that help developers to design layouts:</p>
1 <p>While you have been doing these courses, you've already got to know some of the systems that help developers to design layouts:</p>
2 <ul><li>SASS</li>
2 <ul><li>SASS</li>
3 <li>Pug</li>
3 <li>Pug</li>
4 <li>Bootstrap</li>
4 <li>Bootstrap</li>
5 </ul><p>Programmers often use them together, with other plugins being added for image and file processing after compilation, among other things.</p>
5 </ul><p>Programmers often use them together, with other plugins being added for image and file processing after compilation, among other things.</p>
6 <p>The more these systems there are, the more complicated the development process becomes because you constantly compile files, convert SASS to CSS, and Pug to HTML. Each action requires a separate command in the terminal. So, you have to manually enter commands after each change or use tracking and keep multiple open terminals at once.</p>
6 <p>The more these systems there are, the more complicated the development process becomes because you constantly compile files, convert SASS to CSS, and Pug to HTML. Each action requires a separate command in the terminal. So, you have to manually enter commands after each change or use tracking and keep multiple open terminals at once.</p>
7 <p>Of course, this development process isn't convenient and can lead to errors. The solution to this problem is the invention of<strong>task managers</strong>- special programs or packages for programming all these operations with a single command.</p>
7 <p>Of course, this development process isn't convenient and can lead to errors. The solution to this problem is the invention of<strong>task managers</strong>- special programs or packages for programming all these operations with a single command.</p>
8 <p>This course is about Gulp - a popular task manager among layout designers. If you want to make your work more comfortable, it is a must.</p>
8 <p>This course is about Gulp - a popular task manager among layout designers. If you want to make your work more comfortable, it is a must.</p>
9 <p>We will discuss how to:</p>
9 <p>We will discuss how to:</p>
10 <ul><li>Install Gulp in your project</li>
10 <ul><li>Install Gulp in your project</li>
11 <li>Use<em>gulpfile.js</em>to automate our tasks</li>
11 <li>Use<em>gulpfile.js</em>to automate our tasks</li>
12 <li>Use the basic Gulp commands available without third-party plugins</li>
12 <li>Use the basic Gulp commands available without third-party plugins</li>
13 <li>Install and plug in third-party plugins created by the community</li>
13 <li>Install and plug in third-party plugins created by the community</li>
14 <li>Work with task chains and how we can control it</li>
14 <li>Work with task chains and how we can control it</li>
15 <li>Deal with combining different tasks and calling them separately</li>
15 <li>Deal with combining different tasks and calling them separately</li>
16 </ul>
16 </ul>