diff options
author | Kitson Kelly <me@kitsonkelly.com> | 2020-10-23 22:05:41 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-23 22:05:41 +1100 |
commit | ab898556a490d78d93e806ea3ee31147117102e3 (patch) | |
tree | 48b724d534f0b8b112f0e5d7ae23fd9c3a54dee4 /cli/module_graph2.rs | |
parent | a3024a6dc5c27317049a39ad8cb3e54368429dbf (diff) |
refactor(cli): move bundle check to new infrastructure (#8071)
Diffstat (limited to 'cli/module_graph2.rs')
-rw-r--r-- | cli/module_graph2.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/module_graph2.rs b/cli/module_graph2.rs index 4895cc53a..fd4d46461 100644 --- a/cli/module_graph2.rs +++ b/cli/module_graph2.rs @@ -575,7 +575,7 @@ pub struct TranspileOptions { /// A dependency graph of modules, were the modules that have been inserted via /// the builder will be loaded into the graph. Also provides an interface to /// be able to manipulate and handle the graph. -#[derive(Debug)] +#[derive(Debug, Clone)] pub struct Graph2 { /// A reference to the specifier handler that will retrieve and cache modules /// for the graph. |