Skip to content

Commit

Permalink
fix(docs): Add missing framework docs (#4587)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dr-Electron authored Dec 23, 2024
1 parent 04e84b1 commit 8650f64
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion crates/iota-framework/tests/build-system-packages.rs
Original file line number Diff line number Diff line change
Expand Up @@ -198,12 +198,17 @@ fn build_packages_with_move_config(
&mut files_to_write,
);
create_category_file(framework_dir);
create_category_file(stdlib_dir);
relocate_docs(
framework_dir,
&framework_pkg.package.compiled_docs.unwrap(),
&mut files_to_write,
);
create_category_file(stdlib_dir);
relocate_docs(
stdlib_dir,
&stdlib_pkg.package.compiled_docs.unwrap(),
&mut files_to_write,
);
create_category_file(bridge_dir);
relocate_docs(
bridge_dir,
Expand Down

0 comments on commit 8650f64

Please sign in to comment.