From a5f490eda1667dd746cab839b03856969b1bad68 Mon Sep 17 00:00:00 2001 From: Lachlan Campbell Date: Sun, 16 Jan 2022 22:33:28 -0500 Subject: [PATCH 1/3] Set up CodeSandbox CI --- .codesandbox/ci.json | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .codesandbox/ci.json diff --git a/.codesandbox/ci.json b/.codesandbox/ci.json new file mode 100644 index 000000000..e39bb8e04 --- /dev/null +++ b/.codesandbox/ci.json @@ -0,0 +1,7 @@ +{ + "installCommand": "install", + "buildCommand": "build", + "packages": ["packages/*"], + "sandboxes": ["/examples/next", "/examples/gatsby-plugin"], + "node": "16" +} From 10423e905eaa987e81bc98eba00144fa346679fc Mon Sep 17 00:00:00 2001 From: Lachlan Campbell Date: Sun, 16 Jan 2022 22:34:48 -0500 Subject: [PATCH 2/3] Remove installCommand --- .codesandbox/ci.json | 1 - 1 file changed, 1 deletion(-) diff --git a/.codesandbox/ci.json b/.codesandbox/ci.json index e39bb8e04..936466433 100644 --- a/.codesandbox/ci.json +++ b/.codesandbox/ci.json @@ -1,5 +1,4 @@ { - "installCommand": "install", "buildCommand": "build", "packages": ["packages/*"], "sandboxes": ["/examples/next", "/examples/gatsby-plugin"], From 90a3cbe1590cd5dbc34bd659fb6fa38a306f0883 Mon Sep 17 00:00:00 2001 From: Lachlan Campbell Date: Sun, 16 Jan 2022 22:39:44 -0500 Subject: [PATCH 3/3] Only build theme-ui & core? --- .codesandbox/ci.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.codesandbox/ci.json b/.codesandbox/ci.json index 936466433..969215419 100644 --- a/.codesandbox/ci.json +++ b/.codesandbox/ci.json @@ -1,6 +1,6 @@ { "buildCommand": "build", - "packages": ["packages/*"], + "packages": ["packages/theme-ui", "packages/core"], "sandboxes": ["/examples/next", "/examples/gatsby-plugin"], "node": "16" }