Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,15 @@ jobs:
- run: sudo corepack enable
- run: yarn check-types

test:
docker: *docker-node-image
steps:
- checkout
- restore_cache: *restore-node-modules-cache
- attach_workspace: { at: "." }
- run: sudo corepack enable
- run: yarn test

dist:
docker: *docker-node-image
environment:
Expand Down Expand Up @@ -118,5 +127,7 @@ workflows:
requires: [build]
- check-types:
requires: [build]
- test:
requires: [build]
- dist:
requires: [build]
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ bin
lib
node_modules
out
dist
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"check-format": "prettier --check \"./**/*.{js,json,md,scss,ts,tsx,yaml,yml}\"",
"check-lint": "nx run-many -t check-lint",
"check-types": "nx run-many -t check-types",
"test": "nx run-many -t test",
"clean": "nx run-many -t clean",
"dev:web": "yarn workspace @adahiya/raga-web-app dev",
"dev:electron": "yarn workspace @adahiya/raga-app dev",
Expand Down
6 changes: 6 additions & 0 deletions packages/raga-web-app/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,11 @@
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>

<!--
Portal element for glide-data-grid.
See https://github.com/glideapps/glide-data-grid/blob/96d1830be921db97d0e8a50139fea3b3ead24536/packages/core/API.md#htmlcss-prerequisites
-->
<div id="portal" style="position: fixed; left: 0; top: 0; z-index: 9999" />
</body>
</html>
10 changes: 8 additions & 2 deletions packages/raga-web-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,14 @@
"check-lint": "eslint .",
"check-types": "tsc --noEmit",
"lint-fix": "eslint --fix .",
"test": "vitest run",
"clean": "rm -rf dist .vite"
},
"dependencies": {
"@adahiya/raga-types": "workspace:*",
"@emotion/react": "^11.14.0",
"@faker-js/faker": "^9.8.0",
"@glideapps/glide-data-grid": "^6.0.3",
"@mantine/colors-generator": "^8.3.10",
"@mantine/core": "^8.3.10",
"@mantine/dates": "^8.3.10",
Expand All @@ -30,15 +32,16 @@
"@mantine/spotlight": "^8.3.10",
"@number-flow/react": "^0.5.10",
"@roarr/browser-log-writer": "^1.3.0",
"@table-library/react-table-library": "^4.1.15",
"ansis": "^4.2.0",
"chroma-js": "^3.2.0",
"classnames": "^2.5.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"dayjs": "^1.11.19",
"immer": "^10.2.0",
"lodash": "^4.17.21",
"mantine-contextmenu": "^8.3.11",
"marked": "^15.0.12",
"motion": "^12.23.26",
"pluralize": "^8.0.0",
"radash": "^12.1.1",
Expand All @@ -47,6 +50,7 @@
"react-dropzone": "^14.3.8",
"react-icons": "^5.5.0",
"react-resizable-panels": "^3.0.3",
"react-responsive-carousel": "^3.2.23",
"react-scan": "^0.4.3",
"roarr": "^7.21.2",
"serialize-error": "^12.0.0",
Expand All @@ -58,6 +62,7 @@
},
"devDependencies": {
"@types/chroma-js": "^3.1.2",
"@types/lodash": "^4",
"@types/node": "^24.10.4",
"@types/pluralize": "^0.0.33",
"@types/react": "^19.2.7",
Expand All @@ -70,6 +75,7 @@
"sass": "^1.97.1",
"typescript": "^5.9.3",
"vite": "^7.3.0",
"vite-plugin-html-config": "^2.0.2"
"vite-plugin-html-config": "^2.0.2",
"vitest": "^3.2.4"
}
}

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading