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
It would be interesting to sort the requires in the output file by their path, to have e.g.
var Aria = require("ariatemplates/Aria"); var ariaUtilsJson = require("ariatemplates/utils/Json"); var modulesSthSth = require("modules/sth/Sth");
instead of
var Aria = require("ariatemplates/Aria"); var modulesSthSth = require("modules/sth/Sth"); var ariaUtilsJson = require("ariatemplates/utils/Json");
(right now we iterate $dependencies and output requires just in the same order)
$dependencies
require
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It would be interesting to sort the requires in the output file by their path, to have e.g.
instead of
(right now we iterate
$dependencies
and outputrequire
s just in the same order)The text was updated successfully, but these errors were encountered: