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
Once we add support for tree-shaking (#153), it's possible that a user compiles for two different entry points.
In such case, we should share the build hook outputs, but the link hook outputs should not share their output directory.
In the following scenario we'd like the 3rd build to cache the link hooks:
dart build bin/entry1.dart
dart build bin/entry2.dart
The text was updated successfully, but these errors were encountered:
(Somewhat related to #39 (comment), which is also about not wanting unrelated invocations unintentionally invalidating the cache.)
Sorry, something went wrong.
Input.outputDirectorySystemShared
No branches or pull requests
Once we add support for tree-shaking (#153), it's possible that a user compiles for two different entry points.
In such case, we should share the build hook outputs, but the link hook outputs should not share their output directory.
In the following scenario we'd like the 3rd build to cache the link hooks:
dart build bin/entry1.dart
(runs build hooks, and link hooks)dart build bin/entry2.dart
(runs link hooks)dart build bin/entry1.dart
(uses the cached link hook result from invocation 1.)The text was updated successfully, but these errors were encountered: