diff --git a/packages/cli/package.json b/packages/cli/package.json
index 79328f10..3c775b7c 100644
--- a/packages/cli/package.json
+++ b/packages/cli/package.json
@@ -42,6 +42,7 @@
"pub:next": "pnpm build && pnpm publish --no-git-checks --access public --tag next",
"pub:release": "pnpm build && pnpm publish --no-git-checks --access public",
"test": "vitest run",
+ "test:update": "vitest run -u",
"test:ui": "vitest --ui"
},
"dependencies": {
diff --git a/packages/cli/test/utils/__snapshots__/transform-css-vars.test.ts.snap b/packages/cli/test/utils/__snapshots__/transform-css-vars.test.ts.snap
index 964b9aad..cc7a2b37 100644
--- a/packages/cli/test/utils/__snapshots__/transform-css-vars.test.ts.snap
+++ b/packages/cli/test/utils/__snapshots__/transform-css-vars.test.ts.snap
@@ -3,20 +3,44 @@
exports[`transform css vars 1`] = `
"
-foo
-\\""
+
+ foo
+
+
+\\"
+"
`;
exports[`transform css vars 2`] = `
"
-foo
-\\""
+
+ foo
+
+
+\\"
+"
`;
exports[`transform css vars 3`] = `
"
-foo
-\\""
+
+ foo
+
+
+\\"
+"
`;
diff --git a/packages/cli/test/utils/__snapshots__/transform-import.test.ts.snap b/packages/cli/test/utils/__snapshots__/transform-import.test.ts.snap
index a9c85d65..904c8094 100644
--- a/packages/cli/test/utils/__snapshots__/transform-import.test.ts.snap
+++ b/packages/cli/test/utils/__snapshots__/transform-import.test.ts.snap
@@ -1,33 +1,22 @@
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
exports[`transform import 1`] = `
-"import { Foo } from \\"bar\\"
- import { Button } from \\"@/components/ui/button\\"
- import { Label} from \\"ui/label\\"
- import { Box } from \\"@/components/box\\"
-
- import { cn } from \\"@/lib/utils\\"
- "
+"import { Foo } from \\"bar\\" import { Button } from \\"@/components/ui/button\\" import
+{ Label} from \\"ui/label\\" import { Box } from \\"@/components/box\\" import { cn }
+from \\"@/lib/utils\\"
+"
`;
exports[`transform import 2`] = `
-"import { Foo } from \\"bar\\"
- import { Button } from \\"~/src/components/ui/button\\"
- import { Label} from \\"ui/label\\"
- import { Box } from \\"~/src/components/box\\"
-
- import { cn, foo, bar } from \\"~/lib\\"
- import { bar } from \\"@/lib/utils/bar\\"
- "
+"import { Foo } from \\"bar\\" import { Button } from \\"~/src/components/ui/button\\"
+import { Label} from \\"ui/label\\" import { Box } from \\"~/src/components/box\\"
+import { cn, foo, bar } from \\"~/lib\\" import { bar } from \\"@/lib/utils/bar\\"
+"
`;
exports[`transform import 3`] = `
-"import { Foo } from \\"bar\\"
- import { Button } from \\"~/src/components/ui/button\\"
- import { Label} from \\"ui/label\\"
- import { Box } from \\"~/src/components/box\\"
-
- import { cn } from \\"~/src/utils\\"
- import { bar } from \\"@/lib/utils/bar\\"
- "
+"import { Foo } from \\"bar\\" import { Button } from \\"~/src/components/ui/button\\"
+import { Label} from \\"ui/label\\" import { Box } from \\"~/src/components/box\\"
+import { cn } from \\"~/src/utils\\" import { bar } from \\"@/lib/utils/bar\\"
+"
`;
diff --git a/packages/cli/test/utils/__snapshots__/transform-sfc.test.ts.snap b/packages/cli/test/utils/__snapshots__/transform-sfc.test.ts.snap
index 9815e5cd..c11208d7 100644
--- a/packages/cli/test/utils/__snapshots__/transform-sfc.test.ts.snap
+++ b/packages/cli/test/utils/__snapshots__/transform-sfc.test.ts.snap
@@ -36,7 +36,6 @@ const props = defineProps({
a: { type: String, required: true },
b: { type: Number, required: true },
});
-export {};
"
`;
@@ -49,7 +48,6 @@ const props = defineProps({
asChild: { type: Boolean, required: false },
as: { type: null, required: false },
});
-export {};
"
`;