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

Issue in merging java-script source files in a particular order #146

Open
kannan08 opened this issue May 19, 2017 · 3 comments
Open

Issue in merging java-script source files in a particular order #146

kannan08 opened this issue May 19, 2017 · 3 comments

Comments

@kannan08
Copy link

kannan08 commented May 19, 2017

<jsSourceIncludes>
                                    <jsSourceInclude>UIApp.js</jsSourceInclude>
                                    <jsSourceInclude>UIApp.run.js</jsSourceInclude>
                                    <jsSourceInclude>UI-i18n.config.js</jsSourceInclude>
                                    <jsSourceInclude>UI-router-helper.provider.js</jsSourceInclude>
 <jsSourceInclude>aa/nnn/r.js</jsSourceInclude>
 <jsSourceInclude>aa/nnn/a.js</jsSourceInclude>
<jsSourceIncludes>
We need it should merge what order we mention in the <jsSourceInclude> but it always short by fileName

@twothe
Copy link

twothe commented Jan 17, 2018

The fact that this plugin merges files in the order of file-name makes it completely unusable in modern web environment. If JS file A needs to access JS library B, it won't work, cause B comes after A.

This plugin absolutely needs a way to define the order of files.

@scarballo
Copy link

I think that order JS files by file name suppose a big problem when merge them. The plugin should keep the original order to make it usable as @kannan08 said. Is this possible?

@blutorange
Copy link

You should be able to use

<jsSourceFiles>
	<jsSourceFile>zzz.js</jsSourceFile>
	<jsSourceFile>aa.js</jsSourceFile>
</jsSourceFiles>

instead of jsSourceInclude. This should preserve the order.

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

4 participants