https://github.com/muffinking-jpeg/gulp-preset
My preset for gulp.js
https://github.com/muffinking-jpeg/gulp-preset
config gulp gulpjs preset
Last synced: 3 months ago
JSON representation
My preset for gulp.js
- Host: GitHub
- URL: https://github.com/muffinking-jpeg/gulp-preset
- Owner: MuffinKing-jpeg
- Created: 2022-07-03T15:38:37.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2022-07-28T20:37:55.000Z (almost 4 years ago)
- Last Synced: 2025-03-06T17:15:03.737Z (over 1 year ago)
- Topics: config, gulp, gulpjs, preset
- Language: SCSS
- Homepage:
- Size: 9.77 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Instalation guide
## 1. Install Node.js
LTS
> **System restart required**
## 2. Check Node instalation
```sh
node -v
npm -v
```
## 3. Install gulp-cli
```sh
npm install gulp-cli -g
```
> Required only at first instalation
For **mac** and **linux** users required **sudo**
## 4. Unzip archive and install modules
```sh
npm install
```
## 5. Check _gulp-cli_ and _gulp_ instlation
```sh
gulp -v
```
> Expected output:
> **CLI version x.x.x**
> **Local version 4.x.x**
## 6. Start gulp watch
```sh
gulp watch
```
### Recomended structure
```html
project/
| index.html
| assets/
| scss/
| | style.scss
| | _skin.scss
| |_variables.scss
| | _other-files.scss
| css/
| | style.css
| js
| main.js
```
## 7. Stop gulp
```sh
ctrl+c
```