We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Files must be sorted first by levels and then by tech.
See enb/enb-js#5 and enb/enb-stylus#52
Example
?.deps.js
exports.deps = [ { block: 'block' } ];
In ?.files target will be files in the following order:
?.files
level-1/file.ext-1 level-2/file.ext-1 level-1/file.ext-2 level-2/file.ext-2
Expected order:
level-1/file.ext-1 level-1/file.ext-2 level-2/file.ext-1 level-2/file.ext-2
The text was updated successfully, but these errors were encountered:
This is due to peculiarities of FileList.getBySuffix() — enb/enb#232.
FileList.getBySuffix()
Sorry, something went wrong.
blond
No branches or pull requests
Files must be sorted first by levels and then by tech.
See enb/enb-js#5 and enb/enb-stylus#52
Example
?.deps.js
In
?.files
target will be files in the following order:Expected order:
The text was updated successfully, but these errors were encountered: