Skip to content

Commit

Permalink
Update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
xmalinov committed Apr 12, 2019
1 parent e313d41 commit f50eb9b
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 2 deletions.
34 changes: 33 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,33 @@
# gulp-frontend-builder
# Сборщик статики

Pug + SCSS + ES5 + Live Reload

## Установка и запуск

```
npm i
npm run dev // Запуск live-сервера на http://localhost:3000/
npm run build // Чистка dist с последующей сборкой
```

## Установка сторонних библиотек

Библиотеки рекомендутся устанавливать через **npm i**

Для CSS библиотек в файле vendor.css добавить путь к файлу в виде комментария, например

```
/*= ../../node_modules/normalize.css/normalize.css */
```

Для JS библиотек в файле vendor.js добавить путь к файлу в виде комментария, например

```
/*= ../../node_modules/jquery/dist/jquery.min.js */
```

---

Возможные улучшения, баги и пожелания кидать в [issue](https://github.com/areal-team/gulp-frontend-builder/issues)
2 changes: 1 addition & 1 deletion src/js/vendor.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
'use strict';

//= ../../node_modules/jquery/dist/jquery.min.js
/*= ../../node_modules/jquery/dist/jquery.min.js */

0 comments on commit f50eb9b

Please sign in to comment.