File tree 6 files changed +39
-2
lines changed
6 files changed +39
-2
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "installCommand" : " codesandbox-ci" ,
3
+ "buildCommand" : " build" ,
4
+ "sandboxes" : [" /example" ],
5
+ "node" : " 18"
6
+ }
Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env bash
2
+
3
+ # CodeSandbox CI doesn't have the `alias` or `source` commands available,
4
+ # so we can't use the line below (the preferred installation method).
5
+ # curl -fsSL https://bun.sh/install | bash
6
+
7
+ # We can use an npm global install, but we have to override the
8
+ # npm_config_user_agent environment variable. Otherwise, Bun throws
9
+ # an error about not being compatible with Yarn because it sees Yarn's
10
+ # user agent string since CodeSandbox always runs `yarn run ...`.
11
+ # See https://github.com/oven-sh/bun/issues/2530.
12
+ npm_config_user_agent=" npm/? node/?" npm install --global bun
13
+ # Use this to pin Bun version:
14
+ # npm_config_user_agent="npm/? node/?" npm install --global [email protected]
15
+
16
+ # Now we can get on with business...
17
+ bun install --frozen-lockfile
Original file line number Diff line number Diff line change
1
+ github : [jakeboone02]
Original file line number Diff line number Diff line change
1
+ name : CI
2
+ on : [push, pull_request, workflow_dispatch]
3
+
4
+ jobs :
5
+ build :
6
+ name : Build
7
+ runs-on : ubuntu-latest
8
+ steps :
9
+ - uses : actions/checkout@v4
10
+ - uses : oven-sh/setup-bun@v1
11
+ - run : bun install --frozen-lockfile
12
+ - run : bun --bun run build
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ Official [react-querybuilder](https://npmjs.com/package/react-querybuilder) comp
6
6
>
7
7
> This package is only compatible with Chakra UI ** version 2** .
8
8
>
9
- > For Chakra UI version 3 compatibility, use [ ` @react-querybuilder/chakra ` ] ( https://npmjs.com/package/@react-querybuilder/chakra ) .
9
+ > For Chakra UI version 3 compatibility, use [ ` @react-querybuilder/chakra ` ] ( https://npmjs.com/package/@react-querybuilder/chakra ) >= 8 .
10
10
11
11
- [ Demo (using latest Chakra UI)] ( https://react-querybuilder.js.org/demo/chakra )
12
12
- [ Full documentation] ( https://react-querybuilder.js.org/ )
Original file line number Diff line number Diff line change 51
51
"typecheck:watch" : " tsc --noEmit --watch" ,
52
52
"pretty-print" : " prettier --config prettier.config.mjs --write '*.*' './src/**' './dev/**' './example/**'" ,
53
53
"pretty-check" : " prettier --config prettier.config.mjs --check '*.*' './src/**' './dev/**' './example/**'" ,
54
- "are-the-types-wrong" : " attw --format table-flipped --pack ."
54
+ "are-the-types-wrong" : " attw --format table-flipped --pack ." ,
55
+ "codesandbox-ci" : " bash .codesandbox/ci.sh"
55
56
},
56
57
"devDependencies" : {
57
58
"@arethetypeswrong/cli" : " ^0.16.4" ,
You can’t perform that action at this time.
0 commit comments