-
Notifications
You must be signed in to change notification settings - Fork 0
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
Bug when using glob to match html files #4
Comments
Hi @ierhyna!
I think you expect that when this option is enabled (overwrite: true) all the extracted classes have been appended to the end of the file. Is it so? |
Hi @rajdee, thanks for the answer. I'd like to grab all the classes from every HTML file, and put them all into single CSS file. If that's possible, how can I do it? If it isn't possible yet, I could try to develop this feature. |
Hi @ierhyna! |
@rajdee, if it's possible to insert only unique classes it would be nice 👍 Thanks in advance 😃 |
Hi,
I suppose there is a bug when using glob in
gulp.src()
to match multiple html files.I've got 75 html files, and some CSS classes are the same, but there are unique CSS classes in every html file too. I use
gulp.src('*.html')
to match every html file, but the plugin doesn't copy classes from every file.Looks like the plugin only gets classes from the last file in array.
My gulpfile.js is as following:
Gulp v3.9.1
Node v4.4.3
npm v2.15.1
The text was updated successfully, but these errors were encountered: