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
目前 makit 中 prerequisites 的解决是无序的(Promise.all()),而 GNU make 是从左到右按顺序的。我们会有这种场景不能实现:
Promise.all()
rule('dev', ['build', 'deploy'])
考虑如果不影响性能的话(如果target足够多即使每条顺序执行,并发应该也够)可以按顺序来。否则需要引入其他机制来提供按顺序的功能。
The text was updated successfully, but these errors were encountered:
No branches or pull requests
目前 makit 中 prerequisites 的解决是无序的(
Promise.all()
),而 GNU make 是从左到右按顺序的。我们会有这种场景不能实现:考虑如果不影响性能的话(如果target足够多即使每条顺序执行,并发应该也够)可以按顺序来。否则需要引入其他机制来提供按顺序的功能。
The text was updated successfully, but these errors were encountered: