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
In the concat-compile branch, there is this code:
var isBuild = isNode && /build$/.test(process.argv[1]);
..this strategy tends to scatter the related build files because we have to do thing like this:
a-build.js --some other files-- build.js --some other files-- c-build.js --etc--
Whereas, if the "build" part of the string could be at the front, the build files would tend to coalesce like this:
--some other files-- build.js build-a.js build-c.js --some other files--
Just a thought...
@DesignByOnyx
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In the concat-compile branch, there is this code:
..this strategy tends to scatter the related build files because we have to do thing like this:
Whereas, if the "build" part of the string could be at the front, the build files would tend to coalesce like this:
Just a thought...
@DesignByOnyx
The text was updated successfully, but these errors were encountered: