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
This commit is contained in:
Ives van Hoorne 2019-10-31 18:44:48 +01:00 committed by Andrew Clark
parent 273679a78c
commit a1ff9fd7bb
1 changed files with 10 additions and 0 deletions

10
.codesandbox/ci.json Normal file
View File

@ -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"]
}