Skip to content
Open
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
1 change: 1 addition & 0 deletions .github/workflows/ui-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ on:
- '.github/workflows/ui-ci.yml'
- '.nvmrc'
- 'Makefile'
- 'proto/api/**'
- 'ui/**'

concurrency:
Expand Down
3 changes: 2 additions & 1 deletion ui/mantine-ui/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
SRC_FILES = $(shell find src test-utils -type f)
PROTO_FILES = $(shell find ../../proto/api -type f -name '*.proto')

node_modules: package.json package-lock.json
@echo ">> installing Mantine UI dependencies"
Expand All @@ -9,7 +10,7 @@ build: ../app/dist/mantine/.build_stamp

# .build_stamp allows skipping the build inside `promu crossbuild`, since the
# artifact copies the work tree into the build container.
../app/dist/mantine/.build_stamp: $(SRC_FILES) index.html vite.config.mjs postcss.config.cjs tsconfig.json package-lock.json
../app/dist/mantine/.build_stamp: $(SRC_FILES) $(PROTO_FILES) buf.gen.yaml index.html vite.config.mjs postcss.config.cjs tsconfig.json package-lock.json
@echo ">> building Mantine UI"
$(MAKE) node_modules
npm run build
Expand Down
2 changes: 1 addition & 1 deletion ui/mantine-ui/biome.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"useIgnoreFile": true
},
"files": {
"includes": ["**", "!**/dist", "!**/node_modules", "!**/*.d.ts", "!**/*.d.mts"]
"includes": ["**", "!**/dist", "!**/node_modules", "!src/gen", "!**/*.d.ts", "!**/*.d.mts"]
},
"formatter": {
"enabled": true,
Expand Down
8 changes: 8 additions & 0 deletions ui/mantine-ui/buf.gen.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
version: v2
inputs:
- directory: ../../proto/api
plugins:
- local: protoc-gen-es
out: src/gen
opt:
- target=ts
291 changes: 291 additions & 0 deletions ui/mantine-ui/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading