Skip to content

Commit

Permalink
refactor: remove visualize from core api
Browse files Browse the repository at this point in the history
For the moment, remove the visualize function from the public core api.

Out intent is to bring this back, returning the full deployment result
type so that a visualization can show the current journaled state of a
deployment. This will be additative to the api.
  • Loading branch information
kanej committed Sep 14, 2023
1 parent 2c86071 commit ff8fe1f
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 30 deletions.
1 change: 0 additions & 1 deletion packages/core/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,4 @@ export * from "./types/module";
export * from "./types/module-builder";
export * from "./types/provider";
export * from "./types/serialization";
export { visualize } from "./visualize";
export { wipe } from "./wipe";
22 changes: 0 additions & 22 deletions packages/core/src/visualize.ts

This file was deleted.

7 changes: 0 additions & 7 deletions packages/hardhat-plugin/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -186,13 +186,6 @@ task("visualize")
process.exit(0);
}

// const artifactResolver = new HardhatArtifactResolver(hre);

// const result = await visualize({
// ignitionModule: userModule,
// artifactResolver,
// });

const serializedIgnitionModule =
IgnitionModuleSerializer.serialize(userModule);

Expand Down

0 comments on commit ff8fe1f

Please sign in to comment.