Skip to content

Commit d8beb32

Browse files
committed
feat(workflows): add
1 parent d469a9a commit d8beb32

File tree

2 files changed

+60
-311
lines changed

2 files changed

+60
-311
lines changed

.github/workflows/ci.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
2+
name: CI
3+
4+
on:
5+
pull_request:
6+
push:
7+
branches:
8+
- main
9+
10+
jobs:
11+
build:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v4
15+
- uses: actions/setup-node@v4
16+
with:
17+
node-version: '20'
18+
cache: 'npm'
19+
20+
- run: npm ci
21+
- run: npm run lint
22+
- run: npm run build

.source/index.ts

Lines changed: 38 additions & 311 deletions
Original file line numberDiff line numberDiff line change
@@ -1,312 +1,39 @@
1-
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
21
// @ts-nocheck -- skip type checking
3-
import * as meta_0 from "../content/docs/meta.json?collection=meta&hash=1751038151335";
4-
import * as docs_32 from "../content/docs/hooks/use-auto-resize-textarea.mdx?collection=docs&hash=1751038151335";
5-
import * as docs_31 from "../content/docs/components/vercel-v0-chat.mdx?collection=docs&hash=1751038151335";
6-
import * as docs_30 from "../content/docs/components/tweet-card.mdx?collection=docs&hash=1751038151335";
7-
import * as docs_29 from "../content/docs/components/toolbar.mdx?collection=docs&hash=1751038151335";
8-
import * as docs_28 from "../content/docs/components/text.mdx?collection=docs&hash=1751038151335";
9-
import * as docs_27 from "../content/docs/components/profile.mdx?collection=docs&hash=1751038151335";
10-
import * as docs_26 from "../content/docs/components/pricing.mdx?collection=docs&hash=1751038151335";
11-
import * as docs_25 from "../content/docs/components/particles-background.mdx?collection=docs&hash=1751038151335";
12-
import * as docs_24 from "../content/docs/components/particle-button.mdx?collection=docs&hash=1751038151335";
13-
import * as docs_23 from "../content/docs/components/matrix-text.mdx?collection=docs&hash=1751038151335";
14-
import * as docs_22 from "../content/docs/components/list.mdx?collection=docs&hash=1751038151335";
15-
import * as docs_21 from "../content/docs/components/input.mdx?collection=docs&hash=1751038151335";
16-
import * as docs_20 from "../content/docs/components/hero-geometric.mdx?collection=docs&hash=1751038151335";
17-
import * as docs_19 from "../content/docs/components/hand-written-title.mdx?collection=docs&hash=1751038151335";
18-
import * as docs_18 from "../content/docs/components/faq.mdx?collection=docs&hash=1751038151335";
19-
import * as docs_17 from "../content/docs/components/currency-transfer.mdx?collection=docs&hash=1751038151335";
20-
import * as docs_16 from "../content/docs/components/checkout-interaction.mdx?collection=docs&hash=1751038151335";
21-
import * as docs_15 from "../content/docs/components/card.mdx?collection=docs&hash=1751038151335";
22-
import * as docs_14 from "../content/docs/components/button.mdx?collection=docs&hash=1751038151335";
23-
import * as docs_13 from "../content/docs/components/bento-grid.mdx?collection=docs&hash=1751038151335";
24-
import * as docs_12 from "../content/docs/components/beams-background.mdx?collection=docs&hash=1751038151335";
25-
import * as docs_11 from "../content/docs/components/background-paths.mdx?collection=docs&hash=1751038151335";
26-
import * as docs_10 from "../content/docs/components/background-circles.mdx?collection=docs&hash=1751038151335";
27-
import * as docs_9 from "../content/docs/components/avatar-picker.mdx?collection=docs&hash=1751038151335";
28-
import * as docs_8 from "../content/docs/components/alert.mdx?collection=docs&hash=1751038151335";
29-
import * as docs_7 from "../content/docs/components/ai-input.mdx?collection=docs&hash=1751038151335";
30-
import * as docs_6 from "../content/docs/components/action-search-bar.mdx?collection=docs&hash=1751038151335";
31-
import * as docs_5 from "../content/docs/blocks/minimal-shop.mdx?collection=docs&hash=1751038151335";
32-
import * as docs_4 from "../content/docs/blocks/dashboard.mdx?collection=docs&hash=1751038151335";
33-
import * as docs_3 from "../content/docs/blocks/auth-basic.mdx?collection=docs&hash=1751038151335";
34-
import * as docs_2 from "../content/docs/blocks/ai-chat.mdx?collection=docs&hash=1751038151335";
35-
import * as docs_1 from "../content/docs/blocks/ai-card-generation.mdx?collection=docs&hash=1751038151335";
36-
import * as docs_0 from "../content/docs/index.mdx?collection=docs&hash=1751038151335";
37-
import { _runtime } from "fumadocs-mdx";
38-
import * as _source from "../source.config";
39-
export const docs = _runtime.doc<typeof _source.docs>([
40-
{
41-
info: {
42-
path: "index.mdx",
43-
absolutePath: "C:/Users/KIIT/Desktop/glintkit-ui/content/docs/index.mdx",
44-
},
45-
data: docs_0,
46-
},
47-
{
48-
info: {
49-
path: "blocks\\ai-card-generation.mdx",
50-
absolutePath:
51-
"C:/Users/KIIT/Desktop/glintkit-ui/content/docs/blocks/ai-card-generation.mdx",
52-
},
53-
data: docs_1,
54-
},
55-
{
56-
info: {
57-
path: "blocks\\ai-chat.mdx",
58-
absolutePath:
59-
"C:/Users/KIIT/Desktop/glintkit-ui/content/docs/blocks/ai-chat.mdx",
60-
},
61-
data: docs_2,
62-
},
63-
{
64-
info: {
65-
path: "blocks\\auth-basic.mdx",
66-
absolutePath:
67-
"C:/Users/KIIT/Desktop/glintkit-ui/content/docs/blocks/auth-basic.mdx",
68-
},
69-
data: docs_3,
70-
},
71-
{
72-
info: {
73-
path: "blocks\\dashboard.mdx",
74-
absolutePath:
75-
"C:/Users/KIIT/Desktop/glintkit-ui/content/docs/blocks/dashboard.mdx",
76-
},
77-
data: docs_4,
78-
},
79-
{
80-
info: {
81-
path: "blocks\\minimal-shop.mdx",
82-
absolutePath:
83-
"C:/Users/KIIT/Desktop/glintkit-ui/content/docs/blocks/minimal-shop.mdx",
84-
},
85-
data: docs_5,
86-
},
87-
{
88-
info: {
89-
path: "components\\action-search-bar.mdx",
90-
absolutePath:
91-
"C:/Users/KIIT/Desktop/glintkit-ui/content/docs/components/action-search-bar.mdx",
92-
},
93-
data: docs_6,
94-
},
95-
{
96-
info: {
97-
path: "components\\ai-input.mdx",
98-
absolutePath:
99-
"C:/Users/KIIT/Desktop/glintkit-ui/content/docs/components/ai-input.mdx",
100-
},
101-
data: docs_7,
102-
},
103-
{
104-
info: {
105-
path: "components\\alert.mdx",
106-
absolutePath:
107-
"C:/Users/KIIT/Desktop/glintkit-ui/content/docs/components/alert.mdx",
108-
},
109-
data: docs_8,
110-
},
111-
{
112-
info: {
113-
path: "components\\avatar-picker.mdx",
114-
absolutePath:
115-
"C:/Users/KIIT/Desktop/glintkit-ui/content/docs/components/avatar-picker.mdx",
116-
},
117-
data: docs_9,
118-
},
119-
{
120-
info: {
121-
path: "components\\background-circles.mdx",
122-
absolutePath:
123-
"C:/Users/KIIT/Desktop/glintkit-ui/content/docs/components/background-circles.mdx",
124-
},
125-
data: docs_10,
126-
},
127-
{
128-
info: {
129-
path: "components\\background-paths.mdx",
130-
absolutePath:
131-
"C:/Users/KIIT/Desktop/glintkit-ui/content/docs/components/background-paths.mdx",
132-
},
133-
data: docs_11,
134-
},
135-
{
136-
info: {
137-
path: "components\\beams-background.mdx",
138-
absolutePath:
139-
"C:/Users/KIIT/Desktop/glintkit-ui/content/docs/components/beams-background.mdx",
140-
},
141-
data: docs_12,
142-
},
143-
{
144-
info: {
145-
path: "components\\bento-grid.mdx",
146-
absolutePath:
147-
"C:/Users/KIIT/Desktop/glintkit-ui/content/docs/components/bento-grid.mdx",
148-
},
149-
data: docs_13,
150-
},
151-
{
152-
info: {
153-
path: "components\\button.mdx",
154-
absolutePath:
155-
"C:/Users/KIIT/Desktop/glintkit-ui/content/docs/components/button.mdx",
156-
},
157-
data: docs_14,
158-
},
159-
{
160-
info: {
161-
path: "components\\card.mdx",
162-
absolutePath:
163-
"C:/Users/KIIT/Desktop/glintkit-ui/content/docs/components/card.mdx",
164-
},
165-
data: docs_15,
166-
},
167-
{
168-
info: {
169-
path: "components\\checkout-interaction.mdx",
170-
absolutePath:
171-
"C:/Users/KIIT/Desktop/glintkit-ui/content/docs/components/checkout-interaction.mdx",
172-
},
173-
data: docs_16,
174-
},
175-
{
176-
info: {
177-
path: "components\\currency-transfer.mdx",
178-
absolutePath:
179-
"C:/Users/KIIT/Desktop/glintkit-ui/content/docs/components/currency-transfer.mdx",
180-
},
181-
data: docs_17,
182-
},
183-
{
184-
info: {
185-
path: "components\\faq.mdx",
186-
absolutePath:
187-
"C:/Users/KIIT/Desktop/glintkit-ui/content/docs/components/faq.mdx",
188-
},
189-
data: docs_18,
190-
},
191-
{
192-
info: {
193-
path: "components\\hand-written-title.mdx",
194-
absolutePath:
195-
"C:/Users/KIIT/Desktop/glintkit-ui/content/docs/components/hand-written-title.mdx",
196-
},
197-
data: docs_19,
198-
},
199-
{
200-
info: {
201-
path: "components\\hero-geometric.mdx",
202-
absolutePath:
203-
"C:/Users/KIIT/Desktop/glintkit-ui/content/docs/components/hero-geometric.mdx",
204-
},
205-
data: docs_20,
206-
},
207-
{
208-
info: {
209-
path: "components\\input.mdx",
210-
absolutePath:
211-
"C:/Users/KIIT/Desktop/glintkit-ui/content/docs/components/input.mdx",
212-
},
213-
data: docs_21,
214-
},
215-
{
216-
info: {
217-
path: "components\\list.mdx",
218-
absolutePath:
219-
"C:/Users/KIIT/Desktop/glintkit-ui/content/docs/components/list.mdx",
220-
},
221-
data: docs_22,
222-
},
223-
{
224-
info: {
225-
path: "components\\matrix-text.mdx",
226-
absolutePath:
227-
"C:/Users/KIIT/Desktop/glintkit-ui/content/docs/components/matrix-text.mdx",
228-
},
229-
data: docs_23,
230-
},
231-
{
232-
info: {
233-
path: "components\\particle-button.mdx",
234-
absolutePath:
235-
"C:/Users/KIIT/Desktop/glintkit-ui/content/docs/components/particle-button.mdx",
236-
},
237-
data: docs_24,
238-
},
239-
{
240-
info: {
241-
path: "components\\particles-background.mdx",
242-
absolutePath:
243-
"C:/Users/KIIT/Desktop/glintkit-ui/content/docs/components/particles-background.mdx",
244-
},
245-
data: docs_25,
246-
},
247-
{
248-
info: {
249-
path: "components\\pricing.mdx",
250-
absolutePath:
251-
"C:/Users/KIIT/Desktop/glintkit-ui/content/docs/components/pricing.mdx",
252-
},
253-
data: docs_26,
254-
},
255-
{
256-
info: {
257-
path: "components\\profile.mdx",
258-
absolutePath:
259-
"C:/Users/KIIT/Desktop/glintkit-ui/content/docs/components/profile.mdx",
260-
},
261-
data: docs_27,
262-
},
263-
{
264-
info: {
265-
path: "components\\text.mdx",
266-
absolutePath:
267-
"C:/Users/KIIT/Desktop/glintkit-ui/content/docs/components/text.mdx",
268-
},
269-
data: docs_28,
270-
},
271-
{
272-
info: {
273-
path: "components\\toolbar.mdx",
274-
absolutePath:
275-
"C:/Users/KIIT/Desktop/glintkit-ui/content/docs/components/toolbar.mdx",
276-
},
277-
data: docs_29,
278-
},
279-
{
280-
info: {
281-
path: "components\\tweet-card.mdx",
282-
absolutePath:
283-
"C:/Users/KIIT/Desktop/glintkit-ui/content/docs/components/tweet-card.mdx",
284-
},
285-
data: docs_30,
286-
},
287-
{
288-
info: {
289-
path: "components\\vercel-v0-chat.mdx",
290-
absolutePath:
291-
"C:/Users/KIIT/Desktop/glintkit-ui/content/docs/components/vercel-v0-chat.mdx",
292-
},
293-
data: docs_31,
294-
},
295-
{
296-
info: {
297-
path: "hooks\\use-auto-resize-textarea.mdx",
298-
absolutePath:
299-
"C:/Users/KIIT/Desktop/glintkit-ui/content/docs/hooks/use-auto-resize-textarea.mdx",
300-
},
301-
data: docs_32,
302-
},
303-
]);
304-
export const meta = _runtime.meta<typeof _source.meta>([
305-
{
306-
info: {
307-
path: "meta.json",
308-
absolutePath: "C:/Users/KIIT/Desktop/glintkit-ui/content/docs/meta.json",
309-
},
310-
data: meta_0,
311-
},
312-
]);
2+
import * as meta_0 from "../content/docs/meta.json?collection=meta&hash=1751038151335"
3+
import * as docs_32 from "../content/docs/components/vercel-v0-chat.mdx?collection=docs&hash=1751038151335"
4+
import * as docs_31 from "../content/docs/components/tweet-card.mdx?collection=docs&hash=1751038151335"
5+
import * as docs_30 from "../content/docs/components/toolbar.mdx?collection=docs&hash=1751038151335"
6+
import * as docs_29 from "../content/docs/components/text.mdx?collection=docs&hash=1751038151335"
7+
import * as docs_28 from "../content/docs/components/profile.mdx?collection=docs&hash=1751038151335"
8+
import * as docs_27 from "../content/docs/components/pricing.mdx?collection=docs&hash=1751038151335"
9+
import * as docs_26 from "../content/docs/components/particles-background.mdx?collection=docs&hash=1751038151335"
10+
import * as docs_25 from "../content/docs/components/particle-button.mdx?collection=docs&hash=1751038151335"
11+
import * as docs_24 from "../content/docs/components/matrix-text.mdx?collection=docs&hash=1751038151335"
12+
import * as docs_23 from "../content/docs/components/list.mdx?collection=docs&hash=1751038151335"
13+
import * as docs_22 from "../content/docs/components/input.mdx?collection=docs&hash=1751038151335"
14+
import * as docs_21 from "../content/docs/components/hero-geometric.mdx?collection=docs&hash=1751038151335"
15+
import * as docs_20 from "../content/docs/components/hand-written-title.mdx?collection=docs&hash=1751038151335"
16+
import * as docs_19 from "../content/docs/components/faq.mdx?collection=docs&hash=1751038151335"
17+
import * as docs_18 from "../content/docs/components/currency-transfer.mdx?collection=docs&hash=1751038151335"
18+
import * as docs_17 from "../content/docs/components/checkout-interaction.mdx?collection=docs&hash=1751038151335"
19+
import * as docs_16 from "../content/docs/components/card.mdx?collection=docs&hash=1751038151335"
20+
import * as docs_15 from "../content/docs/components/button.mdx?collection=docs&hash=1751038151335"
21+
import * as docs_14 from "../content/docs/components/bento-grid.mdx?collection=docs&hash=1751038151335"
22+
import * as docs_13 from "../content/docs/components/beams-background.mdx?collection=docs&hash=1751038151335"
23+
import * as docs_12 from "../content/docs/components/background-paths.mdx?collection=docs&hash=1751038151335"
24+
import * as docs_11 from "../content/docs/components/background-circles.mdx?collection=docs&hash=1751038151335"
25+
import * as docs_10 from "../content/docs/components/avatar-picker.mdx?collection=docs&hash=1751038151335"
26+
import * as docs_9 from "../content/docs/components/alert.mdx?collection=docs&hash=1751038151335"
27+
import * as docs_8 from "../content/docs/components/ai-input.mdx?collection=docs&hash=1751038151335"
28+
import * as docs_7 from "../content/docs/components/action-search-bar.mdx?collection=docs&hash=1751038151335"
29+
import * as docs_6 from "../content/docs/hooks/use-auto-resize-textarea.mdx?collection=docs&hash=1751038151335"
30+
import * as docs_5 from "../content/docs/blocks/minimal-shop.mdx?collection=docs&hash=1751038151335"
31+
import * as docs_4 from "../content/docs/blocks/dashboard.mdx?collection=docs&hash=1751038151335"
32+
import * as docs_3 from "../content/docs/blocks/auth-basic.mdx?collection=docs&hash=1751038151335"
33+
import * as docs_2 from "../content/docs/blocks/ai-chat.mdx?collection=docs&hash=1751038151335"
34+
import * as docs_1 from "../content/docs/blocks/ai-card-generation.mdx?collection=docs&hash=1751038151335"
35+
import * as docs_0 from "../content/docs/index.mdx?collection=docs&hash=1751038151335"
36+
import { _runtime } from "fumadocs-mdx"
37+
import * as _source from "../source.config"
38+
export const docs = _runtime.doc<typeof _source.docs>([{ info: {"path":"index.mdx","absolutePath":"C:/Users/KIIT/Desktop/glintkit-ui/content/docs/index.mdx"}, data: docs_0 }, { info: {"path":"blocks\\ai-card-generation.mdx","absolutePath":"C:/Users/KIIT/Desktop/glintkit-ui/content/docs/blocks/ai-card-generation.mdx"}, data: docs_1 }, { info: {"path":"blocks\\ai-chat.mdx","absolutePath":"C:/Users/KIIT/Desktop/glintkit-ui/content/docs/blocks/ai-chat.mdx"}, data: docs_2 }, { info: {"path":"blocks\\auth-basic.mdx","absolutePath":"C:/Users/KIIT/Desktop/glintkit-ui/content/docs/blocks/auth-basic.mdx"}, data: docs_3 }, { info: {"path":"blocks\\dashboard.mdx","absolutePath":"C:/Users/KIIT/Desktop/glintkit-ui/content/docs/blocks/dashboard.mdx"}, data: docs_4 }, { info: {"path":"blocks\\minimal-shop.mdx","absolutePath":"C:/Users/KIIT/Desktop/glintkit-ui/content/docs/blocks/minimal-shop.mdx"}, data: docs_5 }, { info: {"path":"hooks\\use-auto-resize-textarea.mdx","absolutePath":"C:/Users/KIIT/Desktop/glintkit-ui/content/docs/hooks/use-auto-resize-textarea.mdx"}, data: docs_6 }, { info: {"path":"components\\action-search-bar.mdx","absolutePath":"C:/Users/KIIT/Desktop/glintkit-ui/content/docs/components/action-search-bar.mdx"}, data: docs_7 }, { info: {"path":"components\\ai-input.mdx","absolutePath":"C:/Users/KIIT/Desktop/glintkit-ui/content/docs/components/ai-input.mdx"}, data: docs_8 }, { info: {"path":"components\\alert.mdx","absolutePath":"C:/Users/KIIT/Desktop/glintkit-ui/content/docs/components/alert.mdx"}, data: docs_9 }, { info: {"path":"components\\avatar-picker.mdx","absolutePath":"C:/Users/KIIT/Desktop/glintkit-ui/content/docs/components/avatar-picker.mdx"}, data: docs_10 }, { info: {"path":"components\\background-circles.mdx","absolutePath":"C:/Users/KIIT/Desktop/glintkit-ui/content/docs/components/background-circles.mdx"}, data: docs_11 }, { info: {"path":"components\\background-paths.mdx","absolutePath":"C:/Users/KIIT/Desktop/glintkit-ui/content/docs/components/background-paths.mdx"}, data: docs_12 }, { info: {"path":"components\\beams-background.mdx","absolutePath":"C:/Users/KIIT/Desktop/glintkit-ui/content/docs/components/beams-background.mdx"}, data: docs_13 }, { info: {"path":"components\\bento-grid.mdx","absolutePath":"C:/Users/KIIT/Desktop/glintkit-ui/content/docs/components/bento-grid.mdx"}, data: docs_14 }, { info: {"path":"components\\button.mdx","absolutePath":"C:/Users/KIIT/Desktop/glintkit-ui/content/docs/components/button.mdx"}, data: docs_15 }, { info: {"path":"components\\card.mdx","absolutePath":"C:/Users/KIIT/Desktop/glintkit-ui/content/docs/components/card.mdx"}, data: docs_16 }, { info: {"path":"components\\checkout-interaction.mdx","absolutePath":"C:/Users/KIIT/Desktop/glintkit-ui/content/docs/components/checkout-interaction.mdx"}, data: docs_17 }, { info: {"path":"components\\currency-transfer.mdx","absolutePath":"C:/Users/KIIT/Desktop/glintkit-ui/content/docs/components/currency-transfer.mdx"}, data: docs_18 }, { info: {"path":"components\\faq.mdx","absolutePath":"C:/Users/KIIT/Desktop/glintkit-ui/content/docs/components/faq.mdx"}, data: docs_19 }, { info: {"path":"components\\hand-written-title.mdx","absolutePath":"C:/Users/KIIT/Desktop/glintkit-ui/content/docs/components/hand-written-title.mdx"}, data: docs_20 }, { info: {"path":"components\\hero-geometric.mdx","absolutePath":"C:/Users/KIIT/Desktop/glintkit-ui/content/docs/components/hero-geometric.mdx"}, data: docs_21 }, { info: {"path":"components\\input.mdx","absolutePath":"C:/Users/KIIT/Desktop/glintkit-ui/content/docs/components/input.mdx"}, data: docs_22 }, { info: {"path":"components\\list.mdx","absolutePath":"C:/Users/KIIT/Desktop/glintkit-ui/content/docs/components/list.mdx"}, data: docs_23 }, { info: {"path":"components\\matrix-text.mdx","absolutePath":"C:/Users/KIIT/Desktop/glintkit-ui/content/docs/components/matrix-text.mdx"}, data: docs_24 }, { info: {"path":"components\\particle-button.mdx","absolutePath":"C:/Users/KIIT/Desktop/glintkit-ui/content/docs/components/particle-button.mdx"}, data: docs_25 }, { info: {"path":"components\\particles-background.mdx","absolutePath":"C:/Users/KIIT/Desktop/glintkit-ui/content/docs/components/particles-background.mdx"}, data: docs_26 }, { info: {"path":"components\\pricing.mdx","absolutePath":"C:/Users/KIIT/Desktop/glintkit-ui/content/docs/components/pricing.mdx"}, data: docs_27 }, { info: {"path":"components\\profile.mdx","absolutePath":"C:/Users/KIIT/Desktop/glintkit-ui/content/docs/components/profile.mdx"}, data: docs_28 }, { info: {"path":"components\\text.mdx","absolutePath":"C:/Users/KIIT/Desktop/glintkit-ui/content/docs/components/text.mdx"}, data: docs_29 }, { info: {"path":"components\\toolbar.mdx","absolutePath":"C:/Users/KIIT/Desktop/glintkit-ui/content/docs/components/toolbar.mdx"}, data: docs_30 }, { info: {"path":"components\\tweet-card.mdx","absolutePath":"C:/Users/KIIT/Desktop/glintkit-ui/content/docs/components/tweet-card.mdx"}, data: docs_31 }, { info: {"path":"components\\vercel-v0-chat.mdx","absolutePath":"C:/Users/KIIT/Desktop/glintkit-ui/content/docs/components/vercel-v0-chat.mdx"}, data: docs_32 }]);
39+
export const meta = _runtime.meta<typeof _source.meta>([{ info: {"path":"meta.json","absolutePath":"C:/Users/KIIT/Desktop/glintkit-ui/content/docs/meta.json"}, data: meta_0 }]);

0 commit comments

Comments
 (0)