From 5da935de2b63c2d2eaed00af2a8723f42d9888d3 Mon Sep 17 00:00:00 2001 From: Tanguy Krotoff Date: Thu, 16 Mar 2017 09:32:41 +0100 Subject: [PATCH] Move all files from examples to test directory --- react-router/{examples => test}/Ambiguous.tsx | 0 react-router/{examples => test}/Animation.tsx | 0 react-router/{examples => test}/Auth.tsx | 0 react-router/{examples => test}/Basic.tsx | 0 .../{examples => test}/CustomLink.tsx | 0 .../{examples => test}/ModalGallery.tsx | 0 react-router/{examples => test}/NoMatch.tsx | 0 react-router/{examples => test}/Params.tsx | 0 .../PreventingTransitions.tsx | 0 react-router/{examples => test}/README.md | 0 react-router/{examples => test}/Recursive.tsx | 0 .../{examples => test}/RouteConfig.tsx | 0 react-router/{examples => test}/Sidebar.tsx | 0 react-router/tsconfig.json | 24 +++++++++---------- 14 files changed, 12 insertions(+), 12 deletions(-) rename react-router/{examples => test}/Ambiguous.tsx (100%) rename react-router/{examples => test}/Animation.tsx (100%) rename react-router/{examples => test}/Auth.tsx (100%) rename react-router/{examples => test}/Basic.tsx (100%) rename react-router/{examples => test}/CustomLink.tsx (100%) rename react-router/{examples => test}/ModalGallery.tsx (100%) rename react-router/{examples => test}/NoMatch.tsx (100%) rename react-router/{examples => test}/Params.tsx (100%) rename react-router/{examples => test}/PreventingTransitions.tsx (100%) rename react-router/{examples => test}/README.md (100%) rename react-router/{examples => test}/Recursive.tsx (100%) rename react-router/{examples => test}/RouteConfig.tsx (100%) rename react-router/{examples => test}/Sidebar.tsx (100%) diff --git a/react-router/examples/Ambiguous.tsx b/react-router/test/Ambiguous.tsx similarity index 100% rename from react-router/examples/Ambiguous.tsx rename to react-router/test/Ambiguous.tsx diff --git a/react-router/examples/Animation.tsx b/react-router/test/Animation.tsx similarity index 100% rename from react-router/examples/Animation.tsx rename to react-router/test/Animation.tsx diff --git a/react-router/examples/Auth.tsx b/react-router/test/Auth.tsx similarity index 100% rename from react-router/examples/Auth.tsx rename to react-router/test/Auth.tsx diff --git a/react-router/examples/Basic.tsx b/react-router/test/Basic.tsx similarity index 100% rename from react-router/examples/Basic.tsx rename to react-router/test/Basic.tsx diff --git a/react-router/examples/CustomLink.tsx b/react-router/test/CustomLink.tsx similarity index 100% rename from react-router/examples/CustomLink.tsx rename to react-router/test/CustomLink.tsx diff --git a/react-router/examples/ModalGallery.tsx b/react-router/test/ModalGallery.tsx similarity index 100% rename from react-router/examples/ModalGallery.tsx rename to react-router/test/ModalGallery.tsx diff --git a/react-router/examples/NoMatch.tsx b/react-router/test/NoMatch.tsx similarity index 100% rename from react-router/examples/NoMatch.tsx rename to react-router/test/NoMatch.tsx diff --git a/react-router/examples/Params.tsx b/react-router/test/Params.tsx similarity index 100% rename from react-router/examples/Params.tsx rename to react-router/test/Params.tsx diff --git a/react-router/examples/PreventingTransitions.tsx b/react-router/test/PreventingTransitions.tsx similarity index 100% rename from react-router/examples/PreventingTransitions.tsx rename to react-router/test/PreventingTransitions.tsx diff --git a/react-router/examples/README.md b/react-router/test/README.md similarity index 100% rename from react-router/examples/README.md rename to react-router/test/README.md diff --git a/react-router/examples/Recursive.tsx b/react-router/test/Recursive.tsx similarity index 100% rename from react-router/examples/Recursive.tsx rename to react-router/test/Recursive.tsx diff --git a/react-router/examples/RouteConfig.tsx b/react-router/test/RouteConfig.tsx similarity index 100% rename from react-router/examples/RouteConfig.tsx rename to react-router/test/RouteConfig.tsx diff --git a/react-router/examples/Sidebar.tsx b/react-router/test/Sidebar.tsx similarity index 100% rename from react-router/examples/Sidebar.tsx rename to react-router/test/Sidebar.tsx diff --git a/react-router/tsconfig.json b/react-router/tsconfig.json index c7af9e3fcf..c98755507a 100644 --- a/react-router/tsconfig.json +++ b/react-router/tsconfig.json @@ -14,17 +14,17 @@ }, "files": [ "index.d.ts", - "examples/Ambiguous.tsx", - "examples/Animation.tsx", - "examples/Auth.tsx", - "examples/Basic.tsx", - "examples/CustomLink.tsx", - "examples/ModalGallery.tsx", - "examples/NoMatch.tsx", - "examples/Params.tsx", - "examples/PreventingTransitions.tsx", - "examples/Recursive.tsx", - "examples/RouteConfig.tsx", - "examples/Sidebar.tsx" + "test/Ambiguous.tsx", + "test/Animation.tsx", + "test/Auth.tsx", + "test/Basic.tsx", + "test/CustomLink.tsx", + "test/ModalGallery.tsx", + "test/NoMatch.tsx", + "test/Params.tsx", + "test/PreventingTransitions.tsx", + "test/Recursive.tsx", + "test/RouteConfig.tsx", + "test/Sidebar.tsx" ] }