├── .gitignore ├── .prettierrc ├── README.md ├── package.json ├── src ├── index.html └── style.css └── stylelint.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | .DS_Store 4 | .idea 5 | .vscode 6 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex-praktikum/gulp-preset/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Зависимости 2 | 3 | ```bash 4 | npm i 5 | ``` -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex-praktikum/gulp-preset/HEAD/package.json -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex-praktikum/gulp-preset/HEAD/src/index.html -------------------------------------------------------------------------------- /src/style.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: tomato; 3 | } 4 | -------------------------------------------------------------------------------- /stylelint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex-praktikum/gulp-preset/HEAD/stylelint.config.js --------------------------------------------------------------------------------