From a1ff9fd7bb919cfe8d18ce9c8b9315d74d0e3405 Mon Sep 17 00:00:00 2001 From: Ives van Hoorne Date: Thu, 31 Oct 2019 18:44:48 +0100 Subject: [PATCH] Add CodeSandbox CI Config (#17175) * Add CodeSandbox CI Config * Add default sandbox to build * Make build more efficient and add scheduler * Force build * Add scheduler image * Add scheduler/tracing to the build * Force another build --- .codesandbox/ci.json | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .codesandbox/ci.json diff --git a/.codesandbox/ci.json b/.codesandbox/ci.json new file mode 100644 index 0000000000..7dd2a59e41 --- /dev/null +++ b/.codesandbox/ci.json @@ -0,0 +1,10 @@ +{ + "packages": ["packages/react", "packages/react-dom", "packages/scheduler"], + "buildCommand": "build --type=NODE react/index,react-dom/index,scheduler/index,scheduler/tracing", + "publishDirectory": { + "react": "build/node_modules/react", + "react-dom": "build/node_modules/react-dom", + "scheduler": "build/node_modules/scheduler" + }, + "sandboxes": ["new"] +}