Skip to content

Commit f21dfb7

Browse files
committed
Merge remote-tracking branch 'origin' into stable
2 parents c5ef857 + 31d65a7 commit f21dfb7

File tree

310 files changed

+18131
-9960
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

310 files changed

+18131
-9960
lines changed

.eslintignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@ node_modules
44
!.storybook
55
storybook-static
66
.log
7-
.yarn/*
7+
.yarn/*
8+
apps/nextjs-boilerplate/components/ui/form.tsx

.github/workflows/package.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,16 +42,16 @@ jobs:
4242
working-directory: packages/server
4343
run: yarn install --immutable
4444

45-
- name: Install @niledatabase/browser
46-
working-directory: packages/browser
47-
run: yarn install --immutable
48-
4945
- name: Install @niledatabase/react
5046
working-directory: packages/react
5147
run: yarn install --immutable
5248

53-
- name: Install @niledatabase/web
54-
working-directory: packages/web
49+
- name: Install @niledatabase/client
50+
working-directory: packages/client
51+
run: yarn install --immutable
52+
53+
- name: Install @niledatabase/nextjs
54+
working-directory: packages/nextjs
5555
run: yarn install --immutable
5656

5757
- name: Build @niledatabase/packages

.github/workflows/prerelease.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,16 +45,16 @@ jobs:
4545
working-directory: packages/server
4646
run: yarn install --immutable
4747

48-
- name: Install @niledatabase/browser
49-
working-directory: packages/browser
50-
run: yarn install --immutable
51-
5248
- name: Install @niledatabase/react
5349
working-directory: packages/react
5450
run: yarn install --immutable
5551

56-
- name: Install @niledatabase/web
57-
working-directory: packages/web
52+
- name: Install @niledatabase/client
53+
working-directory: packages/client
54+
run: yarn install --immutable
55+
56+
- name: Install @niledatabase/nextjs
57+
working-directory: packages/nextjs
5858
run: yarn install --immutable
5959

6060
- name: Build @niledatabase/packages

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
lib: ["server", "react", "browser"]
11+
lib: ["server", "react", "client", "express"]
1212
steps:
1313
- uses: actions/checkout@v4
1414

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,6 @@ package-lock.json
2121
*.log
2222

2323
storybook-static
24-
*.tsbuildinfo
24+
*.tsbuildinfo
25+
26+
dist

.yarn/releases/yarn-4.9.2.cjs

Lines changed: 942 additions & 0 deletions
Large diffs are not rendered by default.

.yarnrc.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,5 @@ compressionLevel: mixed
33
enableGlobalCache: false
44

55
nodeLinker: node-modules
6+
7+
yarnPath: .yarn/releases/yarn-4.9.2.cjs

CHANGELOG.md

Lines changed: 320 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
components/ui/form.tsx
2+
components/snippets/index.ts

apps/nextjs-kitchensink/.gitignore

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
/.pnp
6+
.pnp.*
7+
.yarn/*
8+
!.yarn/patches
9+
!.yarn/plugins
10+
!.yarn/releases
11+
!.yarn/versions
12+
13+
# testing
14+
/coverage
15+
16+
# next.js
17+
/.next/
18+
/out/
19+
20+
# production
21+
/build
22+
23+
# misc
24+
.DS_Store
25+
*.pem
26+
27+
# debug
28+
npm-debug.log*
29+
yarn-debug.log*
30+
yarn-error.log*
31+
.pnpm-debug.log*
32+
33+
# env files (can opt-in for committing if needed)
34+
.env*
35+
36+
# vercel
37+
.vercel
38+
39+
# typescript
40+
*.tsbuildinfo
41+
next-env.d.ts
42+
43+
## raw file outputs for showing the code
44+
components/snippets

0 commit comments

Comments
 (0)