Skip to content

Commit 4b8a5fd

Browse files
authored
Merge pull request #15 from dev-five-git/support-gradient-color-mix
Impl gradient-color-mix
2 parents 5a1983d + 2688a1a commit 4b8a5fd

File tree

5 files changed

+739
-126
lines changed

5 files changed

+739
-126
lines changed

.claude/settings.local.json

Lines changed: 0 additions & 10 deletions
This file was deleted.

.gitignore

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
1-
# Node
2-
*.log
3-
*.log.*
4-
node_modules
5-
.idea
6-
7-
out/
8-
dist/
9-
code.js
10-
coverage
1+
# Node
2+
*.log
3+
*.log.*
4+
node_modules
5+
.idea
6+
7+
out/
8+
dist/
9+
code.js
10+
coverage
11+
12+
.claude
Lines changed: 36 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,36 @@
1-
// Bun Snapshot v1, https://bun.sh/docs/test/snapshots
2-
3-
exports[`registerCodegen should register codegen 1`] = `
4-
[
5-
{
6-
"code":
7-
"export function Test() {
8-
return <Box boxSize="100%" />
9-
}"
10-
,
11-
"language": "TYPESCRIPT",
12-
"title": "Test - Components",
13-
},
14-
{
15-
"code":
16-
"echo 'export function Test() {
17-
return <Box boxSize="100%" />
18-
}' > Test.tsx"
19-
,
20-
"language": "BASH",
21-
"title": "Test - Components CLI",
22-
},
23-
]
24-
`;
25-
26-
exports[`registerCodegen should register codegen 2`] = `
27-
[
28-
{
29-
"code": "<Box boxSize="100%" />",
30-
"language": "TYPESCRIPT",
31-
"title": "Main",
32-
},
33-
]
34-
`;
35-
36-
exports[`registerCodegen should register codegen 3`] = `[]`;
1+
// Bun Snapshot v1, https://bun.sh/docs/test/snapshots
2+
3+
exports[`registerCodegen should register codegen 1`] = `
4+
[
5+
{
6+
"code":
7+
"export function Test() {
8+
return <Box boxSize="100%" />
9+
}"
10+
,
11+
"language": "TYPESCRIPT",
12+
"title": "Test - Components",
13+
},
14+
{
15+
"code":
16+
"echo 'export function Test() {
17+
return <Box boxSize="100%" />
18+
}' > Test.tsx"
19+
,
20+
"language": "BASH",
21+
"title": "Test - Components CLI",
22+
},
23+
]
24+
`;
25+
26+
exports[`registerCodegen should register codegen 2`] = `
27+
[
28+
{
29+
"code": "<Box boxSize="100%" />",
30+
"language": "TYPESCRIPT",
31+
"title": "Main",
32+
},
33+
]
34+
`;
35+
36+
exports[`registerCodegen should register codegen 3`] = `[]`;

0 commit comments

Comments
 (0)