Skip to content

Commit

Permalink
fix build command error
Browse files Browse the repository at this point in the history
  • Loading branch information
anish29292 committed Jan 17, 2023
1 parent 9cf6759 commit bc0ec13
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 17 deletions.
8 changes: 4 additions & 4 deletions components/lab-job-scheduler/webapp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@
"stylelint-config-standard": "^20.0.0"
},
"scripts": {
"start": "react-scripts start",
"start-debug": "REACT_APP_CONTAXY_ENDPOINT=http://localhost:30010/api REACT_APP_EXTENSION_ENDPOINT=http://localhost:8080/ yarn start",
"start": "rGENERATE_SOURCEMAP=false eact-scripts start",
"start-debug": "GENERATE_SOURCEMAP=false REACT_APP_CONTAXY_ENDPOINT=http://localhost:30010/api REACT_APP_EXTENSION_ENDPOINT=http://localhost:8080/ yarn start",
"container": "run(){ docker build -t project-template-dev ../.github/actions/build-environment && echo 'Starting the container. That can take a moment...' && docker run -it --rm -p 3000:3000 -p 6006:6006 -v $(pwd):/workspace:delegated --entrypoint \"/bin/bash\" project-template-dev -c \"cd workspace/ && yarn $1\"; }; run",
"build": "react-scripts build",
"test": "react-scripts test a --watchAll=false",
"build": "GENERATE_SOURCEMAP=false react-scripts build",
"test": "GENERATE_SOURCEMAP=false react-scripts test a --watchAll=false",
"test-interactive": "react-scripts test",
"eject": "react-scripts eject",
"lint": "yarn run lint:js ; yarn run lint:css",
Expand Down
8 changes: 4 additions & 4 deletions components/lab-mlflow-manager/webapp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@
"stylelint-config-standard": "^20.0.0"
},
"scripts": {
"start": "react-scripts start",
"start-debug": "REACT_APP_CONTAXY_ENDPOINT=http://localhost:30010/api REACT_APP_EXTENSION_ENDPOINT=http://localhost:8080/ yarn start",
"start": "GENERATE_SOURCEMAP=false react-scripts start",
"start-debug": "GENERATE_SOURCEMAP=false REACT_APP_CONTAXY_ENDPOINT=http://localhost:30010/api REACT_APP_EXTENSION_ENDPOINT=http://localhost:8080/ yarn start",
"container": "run(){ docker build -t project-template-dev ../.github/actions/build-environment && echo 'Starting the container. That can take a moment...' && docker run -it --rm -p 3000:3000 -p 6006:6006 -v $(pwd):/workspace:delegated --entrypoint \"/bin/bash\" project-template-dev -c \"cd workspace/ && yarn $1\"; }; run",
"build": "react-scripts build",
"test": "react-scripts test a --watchAll=false --passWithNoTests",
"build": "GENERATE_SOURCEMAP=false react-scripts build",
"test": "GENERATE_SOURCEMAP=false react-scripts test a --watchAll=false --passWithNoTests",
"test-interactive": "react-scripts test",
"eject": "react-scripts eject",
"lint": "yarn run lint:js ; yarn run lint:css",
Expand Down
8 changes: 4 additions & 4 deletions components/lab-workspace-manager/webapp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@
"stylelint-config-standard": "^20.0.0"
},
"scripts": {
"start": "react-scripts start",
"start-debug": "REACT_APP_CONTAXY_ENDPOINT=http://localhost:30010/api REACT_APP_EXTENSION_ENDPOINT=http://localhost:8080 yarn start",
"start": "GENERATE_SOURCEMAP=false react-scripts start",
"start-debug": "GENERATE_SOURCEMAP=false REACT_APP_CONTAXY_ENDPOINT=http://localhost:30010/api REACT_APP_EXTENSION_ENDPOINT=http://localhost:8080 yarn start",
"container": "run(){ docker build -t project-template-dev ../.github/actions/build-environment && echo 'Starting the container. That can take a moment...' && docker run -it --rm -p 3000:3000 -p 6006:6006 -v $(pwd):/workspace:delegated --entrypoint \"/bin/bash\" project-template-dev -c \"cd workspace/ && yarn $1\"; }; run",
"build": "react-scripts build",
"test": "react-scripts test a --watchAll=false",
"build": "GENERATE_SOURCEMAP=false react-scripts build",
"test": "GENERATE_SOURCEMAP=false react-scripts test a --watchAll=false",
"test-interactive": "react-scripts test",
"eject": "react-scripts eject",
"lint": "yarn run lint:js ; yarn run lint:css",
Expand Down
8 changes: 4 additions & 4 deletions components/template/webapp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@
"stylelint-config-standard": "^20.0.0"
},
"scripts": {
"start": "react-scripts start",
"start-debug": "REACT_APP_CONTAXY_ENDPOINT=http://localhost:30010/api REACT_APP_EXTENSION_ENDPOINT=http://localhost:8080/ yarn start",
"start": "GENERATE_SOURCEMAP=false react-scripts start",
"start-debug": "GENERATE_SOURCEMAP=false REACT_APP_CONTAXY_ENDPOINT=http://localhost:30010/api REACT_APP_EXTENSION_ENDPOINT=http://localhost:8080/ yarn start",
"container": "run(){ docker build -t project-template-dev ../.github/actions/build-environment && echo 'Starting the container. That can take a moment...' && docker run -it --rm -p 3000:3000 -p 6006:6006 -v $(pwd):/workspace:delegated --entrypoint \"/bin/bash\" project-template-dev -c \"cd workspace/ && yarn $1\"; }; run",
"build": "react-scripts --openssl-legacy-provider build",
"test": "react-scripts test a --watchAll=false",
"build": "GENERATE_SOURCEMAP=false react-scripts --openssl-legacy-provider build",
"test": "GENERATE_SOURCEMAP=false react-scripts test a --watchAll=false",
"test-interactive": "react-scripts test",
"eject": "react-scripts eject",
"lint": "yarn run lint:js ; yarn run lint:css",
Expand Down
2 changes: 1 addition & 1 deletion webapp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
"stylelint-config-standard": "^20.0.0"
},
"scripts": {
"start": "react-scripts start",
"start": "GENERATE_SOURCEMAP=false react-scripts start",
"start-debug": "GENERATE_SOURCEMAP=false REACT_APP_ENDPOINT=http://localhost:30010/api yarn start",
"container": "run(){ docker build -t project-template-dev ../.github/actions/build-environment && echo 'Starting the container. That can take a moment...' && docker run -it --rm -p 3000:3000 -p 6006:6006 -v $(pwd):/workspace:delegated --entrypoint \"/bin/bash\" project-template-dev -c \"cd workspace/ && yarn $1\"; }; run",
"build": "GENERATE_SOURCEMAP=false react-scripts build",
Expand Down

0 comments on commit bc0ec13

Please sign in to comment.