Skip to content

Commit

Permalink
Actions issue may have been due to relative paths in package.json. Tr…
Browse files Browse the repository at this point in the history
…ying that out
  • Loading branch information
ANeaves committed Sep 28, 2023
1 parent 9b4c34c commit d7329b1
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
1 change: 1 addition & 0 deletions example/.env.production
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
REACT_APP_ENDPOINT_URL=
BUILD_PATH=build/app
18 changes: 9 additions & 9 deletions example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ../node_modules/react-scripts/bin/react-scripts.js start",
"build": "node ../node_modules/react-scripts/bin/react-scripts.js build",
"test": "node ../node_modules/react-scripts/bin/react-scripts.js test",
"eject": "node ../node_modules/react-scripts/bin/react-scripts.js eject"
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"dependencies": {
"odin-react": "file:..",
"react": "file:../node_modules/react",
"react-bootstrap-icons": "^1.9.1",
"react-dom": "file:../node_modules/react-dom",
"react-scripts": "file:../node_modules/react-scripts"
"odin-react": "github:stfc-aeg/odin-react",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "5.0.1",
"react-bootstrap-icons": "^1.9.1"
},
"devDependencies": {
},
Expand Down

0 comments on commit d7329b1

Please sign in to comment.