Skip to content

Commit 9d0903f

Browse files
committed
feat: rename to ViteOld & VitestOld
1 parent a728fc8 commit 9d0903f

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

library/src/files.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ export { default as Tsconfig } from "./library/tsconfig";
101101
export { default as TsTest } from "./library/tsTest";
102102
export { default as TypeScript } from "./library/typescript";
103103
export { default as Tex } from "./library/tex";
104-
export { Vite, Vite_Old } from "./library/vite";
104+
export { Vite, ViteOld } from "./library/vite";
105105
export { default as Video } from "./library/video";
106106
export { default as Vlang } from "./library/vlang";
107107
export { default as Vue } from "./library/vue";
@@ -169,7 +169,7 @@ export { default as ReduxFacade } from "./library/reduxFacade";
169169
export { default as ReduxReducer } from "./library/reduxReducer";
170170
export { default as ReduxSelector } from "./library/reduxSelector";
171171
export { default as Twig } from "./library/twig";
172-
export { Vitest, Vitest_Old } from "./library/vitest";
172+
export { Vitest, VitestOld } from "./library/vitest";
173173
export { default as Nuxt } from "./library/nuxt";
174174
export { default as I18n } from "./library/I18n";
175175
export { default as SvelteTS } from "./library/svelteTs";

library/src/library/vite.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import type { ComponentProps, FC } from "react";
22

3-
const Vite_Old: FC<ComponentProps<"svg">> = (props) => (
3+
const ViteOld: FC<ComponentProps<"svg">> = (props) => (
44
<svg
55
xmlns="http://www.w3.org/2000/svg"
66
fill="none"
@@ -34,4 +34,4 @@ const Vite: FC<ComponentProps<"svg">> = (props) => (
3434
</svg>
3535
);
3636

37-
export { Vite, Vite_Old };
37+
export { Vite, ViteOld };

library/src/library/vitest.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import type { ComponentProps, FC } from "react";
22

3-
const Vitest_Old: FC<ComponentProps<"svg">> = (props) => (
3+
const VitestOld: FC<ComponentProps<"svg">> = (props) => (
44
<svg
55
xmlns="http://www.w3.org/2000/svg"
66
fill="none"
@@ -38,4 +38,4 @@ const Vitest: FC<ComponentProps<"svg">> = (props) => (
3838
</svg>
3939
);
4040

41-
export { Vitest, Vitest_Old };
41+
export { Vitest, VitestOld };

0 commit comments

Comments
 (0)