Skip to content

Commit

Permalink
Add merge-tree export to mono-package (#5008)
Browse files Browse the repository at this point in the history
* add merge tree top level export

* change casing
  • Loading branch information
micahgodbolt committed Feb 2, 2021
1 parent 0286549 commit 22bed61
Show file tree
Hide file tree
Showing 10 changed files with 15 additions and 8 deletions.
17 changes: 9 additions & 8 deletions experimental/framework/experimental-fluidframework/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,12 @@
* Licensed under the MIT License.
*/

export * from "./Aqueduct";
export * from "./CoreInterfaces";
export * from "./DataObjects";
export * from "./DatastoreDefinitions";
export * from "./Map";
export * from "./ProtocolDefinitions";
export * from "./Sequence";
export * from "./ViewInterfaces";
export * from "./aqueduct";
export * from "./coreInterfaces";
export * from "./dataObjects";
export * from "./datastoreDefinitions";
export * from "./map";
export * from "./mergeTree";
export * from "./protocolDefinitions";
export * from "./sequence";
export * from "./viewInterfaces";
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
/*!
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/

export * from "@fluidframework/merge-tree";

0 comments on commit 22bed61

Please sign in to comment.