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 entity and then by tech.
Example
?.deps.js
exports.deps = [ { block: 'block-1' }, { block: 'block-2' } ];
In ?.files target will be files in the following order:
?.files
file-1.ext-1 file-2.ext-1 file-1.ext-2 file-2.ext-2
Expected order:
file-1.ext-1 file-1.ext-2 file-2.ext-1 file-2.ext-2
The text was updated successfully, but these errors were encountered:
blond
Successfully merging a pull request may close this issue.
Files must be sorted first by entity and then by tech.
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: