You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We need to be able to resolve URIs that use the package: scheme. This means that we should be able to set the package root from the command line using the --package-root option (supported by the VM and frog).
If the package root isn't explicitly set it should default to
"${dirname(script)}/packages"
where script is main Dart file we've been asked to compile. When resolving a URI that uses the package: scheme, we simply add the package root as the prefix (I guess this only makes sense for relative URLs).
The text was updated successfully, but these errors were encountered:
We need to be able to resolve URIs that use the package: scheme. This means that we should be able to set the package root from the command line using the --package-root option (supported by the VM and frog).
If the package root isn't explicitly set it should default to
"${dirname(script)}/packages"
where script is main Dart file we've been asked to compile. When resolving a URI that uses the package: scheme, we simply add the package root as the prefix (I guess this only makes sense for relative URLs).
The text was updated successfully, but these errors were encountered: