Skip to content

Commit 778a061

Browse files
committed
prettier fix
1 parent 311c1f3 commit 778a061

2 files changed

Lines changed: 26 additions & 30 deletions

File tree

apps/dashboard/vite.config.ts

Lines changed: 11 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,19 @@
1-
import { defineConfig } from 'vite'
2-
import react from '@vitejs/plugin-react'
3-
import tailwindcss from '@tailwindcss/vite'
4-
import svgr from 'vite-plugin-svgr'
5-
import path from 'path'
6-
import { fileURLToPath } from 'url'
1+
import { defineConfig } from "vite";
2+
import react from "@vitejs/plugin-react";
3+
import tailwindcss from "@tailwindcss/vite";
4+
import svgr from "vite-plugin-svgr";
5+
import path from "path";
6+
import { fileURLToPath } from "url";
77

8-
const __dirname = path.dirname(fileURLToPath(import.meta.url))
8+
const __dirname = path.dirname(fileURLToPath(import.meta.url));
99

1010
// https://vite.dev/config/
1111
export default defineConfig({
12-
plugins: [
13-
react(),
14-
tailwindcss(),
15-
svgr(),
16-
],
12+
plugins: [react(), tailwindcss(), svgr()],
1713
resolve: {
1814
alias: {
19-
'@app/ui': path.resolve(__dirname, '../../shared/ui/src'),
15+
"@app/ui": path.resolve(__dirname, "../../shared/ui/src"),
2016
},
21-
dedupe: ['react', 'react-dom'],
17+
dedupe: ["react", "react-dom"],
2218
},
23-
})
19+
});

shared/ui/src/index.ts

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
export * from './components/Avatar';
2-
export * from './components/Bookmark';
3-
export * from './components/Button';
4-
export * from './components/DateBadge';
5-
export * from './components/Dropdown';
6-
export * from './components/Logo';
7-
export * from './components/SearchBar';
8-
export * from './components/SearchPanel';
9-
export * from './components/SideBar';
10-
export * from './components/Tags';
11-
export * from './components/Toggle';
12-
export * from './components/Cards/DashboardEventCard';
13-
export * from './components/Cards/DashboardPost';
14-
export * from './components/Cards/ExtensionEventCard';
15-
export * from './components/Cards/LoopSummary';
1+
export * from "./components/Avatar";
2+
export * from "./components/Bookmark";
3+
export * from "./components/Button";
4+
export * from "./components/DateBadge";
5+
export * from "./components/Dropdown";
6+
export * from "./components/Logo";
7+
export * from "./components/SearchBar";
8+
export * from "./components/SearchPanel";
9+
export * from "./components/SideBar";
10+
export * from "./components/Tags";
11+
export * from "./components/Toggle";
12+
export * from "./components/Cards/DashboardEventCard";
13+
export * from "./components/Cards/DashboardPost";
14+
export * from "./components/Cards/ExtensionEventCard";
15+
export * from "./components/Cards/LoopSummary";

0 commit comments

Comments
 (0)