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
6 changes: 6 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,12 @@ ui: ## Build UI
@(cd ui; npm i ; npm run build; )
@ls -l ui/build

.PHONY: ui_no_bin_links
ui_no_bin_links: ## Build UI
@(echo "Building UI (without bin links) ..." )
@(cd ui; npm i --no-bin-links; npm run buildfulllink; )
@ls -l ui/build

.PHONY: backend
backend: ## Build Backend
@(echo "Building Backend ..." )
Expand Down
132 changes: 66 additions & 66 deletions ui/package-lock.json

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

3 changes: 2 additions & 1 deletion ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"private": true,
"dependencies": {
"@apiclarity/modules": "file:src/modules",
"axios": "^1.0.0",
"axios": ">=1.7.4",
"classnames": "^2.3.1",
"formik": "^2.2.9",
"moment": "^2.29.3",
Expand All @@ -29,6 +29,7 @@
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"buildfulllink": "node_modules/react-scripts/bin/react-scripts.js build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"preinstall": "node ./preinstall.js"
Expand Down