Replies: 1 comment 6 replies
-
So I seem to have found the answer in case anyone is interested thanks to some help on stackOverflow: " It's better here to load each file individually and then join the streams. To use merge-stream, install the package with: npm install -D merge-stream
|
Beta Was this translation helpful? Give feedback.
6 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I want to use gulp to concat some html files in order, and some of them are duplicates.
I'm using 'nounique' to be able to have multiple of the same src
For example:
I found the options
no-unique
andno-sort
in the documentation so I thought that would solve my problem, however I am not getting the desired result, as every html snippet is onlyconcat
-ed one time, so any duplicated snippets will only show up once.I'm not sure if this is because of src or because of concat, please let me know if you can help me
Beta Was this translation helpful? Give feedback.
All reactions