From 22bed615218b3e7e87e0ef95c6f5d1386373703c Mon Sep 17 00:00:00 2001 From: Micah Godbolt Date: Tue, 2 Feb 2021 10:37:51 -0800 Subject: [PATCH] Add merge-tree export to mono-package (#5008) * add merge tree top level export * change casing --- .../src/{Aqueduct.ts => aqueduct.ts} | 0 .../{CoreInterfaces.ts => coreInterfaces.ts} | 0 .../src/{DataObjects.ts => dataObjects.ts} | 0 ...reDefinitions.ts => datastoreDefinitions.ts} | 0 .../experimental-fluidframework/src/index.ts | 17 +++++++++-------- .../src/{Map.ts => map.ts} | 0 .../src/mergeTree.ts | 6 ++++++ ...colDefinitions.ts => protocolDefinitions.ts} | 0 .../src/{Sequence.ts => sequence.ts} | 0 .../{ViewInterfaces.ts => viewInterfaces.ts} | 0 10 files changed, 15 insertions(+), 8 deletions(-) rename experimental/framework/experimental-fluidframework/src/{Aqueduct.ts => aqueduct.ts} (100%) rename experimental/framework/experimental-fluidframework/src/{CoreInterfaces.ts => coreInterfaces.ts} (100%) rename experimental/framework/experimental-fluidframework/src/{DataObjects.ts => dataObjects.ts} (100%) rename experimental/framework/experimental-fluidframework/src/{DatastoreDefinitions.ts => datastoreDefinitions.ts} (100%) rename experimental/framework/experimental-fluidframework/src/{Map.ts => map.ts} (100%) create mode 100644 experimental/framework/experimental-fluidframework/src/mergeTree.ts rename experimental/framework/experimental-fluidframework/src/{ProtocolDefinitions.ts => protocolDefinitions.ts} (100%) rename experimental/framework/experimental-fluidframework/src/{Sequence.ts => sequence.ts} (100%) rename experimental/framework/experimental-fluidframework/src/{ViewInterfaces.ts => viewInterfaces.ts} (100%) diff --git a/experimental/framework/experimental-fluidframework/src/Aqueduct.ts b/experimental/framework/experimental-fluidframework/src/aqueduct.ts similarity index 100% rename from experimental/framework/experimental-fluidframework/src/Aqueduct.ts rename to experimental/framework/experimental-fluidframework/src/aqueduct.ts diff --git a/experimental/framework/experimental-fluidframework/src/CoreInterfaces.ts b/experimental/framework/experimental-fluidframework/src/coreInterfaces.ts similarity index 100% rename from experimental/framework/experimental-fluidframework/src/CoreInterfaces.ts rename to experimental/framework/experimental-fluidframework/src/coreInterfaces.ts diff --git a/experimental/framework/experimental-fluidframework/src/DataObjects.ts b/experimental/framework/experimental-fluidframework/src/dataObjects.ts similarity index 100% rename from experimental/framework/experimental-fluidframework/src/DataObjects.ts rename to experimental/framework/experimental-fluidframework/src/dataObjects.ts diff --git a/experimental/framework/experimental-fluidframework/src/DatastoreDefinitions.ts b/experimental/framework/experimental-fluidframework/src/datastoreDefinitions.ts similarity index 100% rename from experimental/framework/experimental-fluidframework/src/DatastoreDefinitions.ts rename to experimental/framework/experimental-fluidframework/src/datastoreDefinitions.ts diff --git a/experimental/framework/experimental-fluidframework/src/index.ts b/experimental/framework/experimental-fluidframework/src/index.ts index 1ad1d8454732..8fc794894f6a 100644 --- a/experimental/framework/experimental-fluidframework/src/index.ts +++ b/experimental/framework/experimental-fluidframework/src/index.ts @@ -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"; diff --git a/experimental/framework/experimental-fluidframework/src/Map.ts b/experimental/framework/experimental-fluidframework/src/map.ts similarity index 100% rename from experimental/framework/experimental-fluidframework/src/Map.ts rename to experimental/framework/experimental-fluidframework/src/map.ts diff --git a/experimental/framework/experimental-fluidframework/src/mergeTree.ts b/experimental/framework/experimental-fluidframework/src/mergeTree.ts new file mode 100644 index 000000000000..47a4e12b7082 --- /dev/null +++ b/experimental/framework/experimental-fluidframework/src/mergeTree.ts @@ -0,0 +1,6 @@ +/*! + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. + */ + +export * from "@fluidframework/merge-tree"; diff --git a/experimental/framework/experimental-fluidframework/src/ProtocolDefinitions.ts b/experimental/framework/experimental-fluidframework/src/protocolDefinitions.ts similarity index 100% rename from experimental/framework/experimental-fluidframework/src/ProtocolDefinitions.ts rename to experimental/framework/experimental-fluidframework/src/protocolDefinitions.ts diff --git a/experimental/framework/experimental-fluidframework/src/Sequence.ts b/experimental/framework/experimental-fluidframework/src/sequence.ts similarity index 100% rename from experimental/framework/experimental-fluidframework/src/Sequence.ts rename to experimental/framework/experimental-fluidframework/src/sequence.ts diff --git a/experimental/framework/experimental-fluidframework/src/ViewInterfaces.ts b/experimental/framework/experimental-fluidframework/src/viewInterfaces.ts similarity index 100% rename from experimental/framework/experimental-fluidframework/src/ViewInterfaces.ts rename to experimental/framework/experimental-fluidframework/src/viewInterfaces.ts