Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Дополнения к gulp/tasks/copy.js #63

Open
veremey opened this issue Jul 26, 2017 · 2 comments
Open

Дополнения к gulp/tasks/copy.js #63

veremey opened this issue Jul 26, 2017 · 2 comments

Comments

@veremey
Copy link

veremey commented Jul 26, 2017

gulp.task('copy:css', function() {
return gulp
.src([
config.src.root + '/css/**/.'
])
.pipe(gulp.dest(config.dest.root + '/css/'));
});

gulp.task('copy', [
'copy:img',
'copy:css',
// 'copy:rootfiles',
// 'copy:lib',
'copy:fonts'
]);

Многие плагины написаны с привязкой файлов в директории CSS, например:

  • jquery.fancybox.min.css + иконки к плагину
  • jquery-ui.css
@akella
Copy link
Member

akella commented Jul 28, 2017

Я их обычно просто переименовываю в .scss и ложу в /sass/ директорию, или такой подход чем-то не вариант?

@veremey
Copy link
Author

veremey commented Jul 29, 2017

Есть плагины у которых очень много CSS и их код так задокументирован, что компиляторы выдают CSS с ошибками, который нужно долго править руками.
Встречаю варианты, когда в одной папке с CSS нужно положить иконки для корректной работы плагина.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants