Skip to content

Commit 00b4de6

Browse files
committed
Reorganised file structure so we can exclude demo stuff
1 parent 0d682af commit 00b4de6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+516
-257
lines changed

dashi/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,4 @@ dist-ssr
2323
*.sln
2424
*.sw?
2525
coverage/
26+
stats.html

dashi/package-lock.json

Lines changed: 231 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dashi/package.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@
33
"private": true,
44
"version": "0.0.3",
55
"type": "module",
6+
"files": ["dist"],
7+
"exports": {
8+
".": {
9+
"types": "./dist/lib/index.d.ts",
10+
"module": "./dist/lib/index.js"
11+
}
12+
},
613
"scripts": {
714
"dev": "vite",
815
"test": "vitest",
@@ -47,6 +54,7 @@
4754
"typescript": "^5.6.2",
4855
"react": "^18.3.1",
4956
"react-dom": "^18.3.1",
57+
"rollup-plugin-visualizer": "^5.12.0",
5058
"vite": "^5.4.6",
5159
"vite-plugin-dts": "^4.2.4",
5260
"vitest": "^2.1.1"

dashi/src/components/DashiContribution.tsx

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

dashi/src/demo/App.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
import { CssBaseline, ThemeProvider, createTheme } from "@mui/material";
22
import Typography from "@mui/material/Typography";
33

4-
import { initSystemStore } from "@/store/actions/initSystemStore";
4+
import { configureLogging, initSystemStore } from "@/lib";
55
import ExtensionsInfo from "./components/ExtensionInfo";
66
import PanelsControl from "./components/PanelsControl";
77
import PanelsRow from "./components/PanelsRow";
88

9+
configureLogging();
10+
911
initSystemStore();
1012

1113
// MUI's default font family

0 commit comments

Comments
 (0)