Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
thelasttoto committed Aug 23, 2024
1 parent 7639744 commit 37aa375
Show file tree
Hide file tree
Showing 3 changed files with 74 additions and 67 deletions.
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

0 comments on commit 37aa375

Please sign in to comment.