Skip to content

Commit cace0f8

Browse files
committed
added upgraded library changes for react-router-dom
1 parent 780fb0a commit cace0f8

3 files changed

Lines changed: 26 additions & 17 deletions

File tree

client/package.json

Lines changed: 19 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,18 @@
3131
},
3232
"eslintConfig": {
3333
"extends": [
34-
"react-app",
35-
"react-app/jest"
36-
]
34+
"eslint:recommended"
35+
],
36+
"parserOptions": {
37+
"ecmaVersion": 2020,
38+
"sourceType": "module",
39+
"ecmaFeatures": {
40+
"jsx": true
41+
}
42+
},
43+
"rules": {
44+
"react/react-in-jsx-scope": "off"
45+
}
3746
},
3847
"browserslist": {
3948
"production": [
@@ -48,22 +57,21 @@
4857
]
4958
},
5059
"devDependencies": {
51-
"@eslint/compat": "^1.2.3",
60+
"@eslint/js": "^9.37.0",
5261
"@testing-library/jest-dom": "^5.16.5",
5362
"@testing-library/react": "^13.4.0",
5463
"@testing-library/user-event": "^13.5.0",
5564
"@types/jest": "^29.1.2",
5665
"@types/react-router-dom": "^5.3.3",
57-
"@typescript-eslint/eslint-plugin": "^8.46.0",
58-
"@typescript-eslint/parser": "^8.46.0",
59-
"@vitest/coverage-v8": "3.1.2",
60-
"eslint": "^9.37.0",
61-
"eslint-config-react-app": "^7.0.1",
62-
"eslint-plugin-react": "^7.37.5",
66+
"@typescript-eslint/eslint-plugin": "^8.46.0",
67+
"@typescript-eslint/parser": "^8.46.0",
68+
"@vitest/coverage-v8": "3.1.2",
69+
"eslint": "^9.37.0",
70+
"eslint-plugin-react": "^7.37.5",
6371
"jsdom": "^25.0.1",
6472
"react-error-overlay": "6.0.9",
6573
"vite": "^6.0.9",
66-
"vite-plugin-eslint": "^1.8.1",
74+
"vite-plugin-eslint": "^1.8.1",
6775
"vitest": "^3.1.2"
6876
},
6977
"resolutions": {

server/Dockerfile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ COPY . .
1313
RUN pip install pipenv debugpy
1414

1515
# Install cms_bluebutton_sdk from pypi.org or test.pypi.org
16-
RUN if [ "$BUILD_DEVELOPMENT" = "True" ]; then \
17-
pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple/ cms-bluebutton-sdk; \
18-
else \
19-
pip install cms-bluebutton-sdk; \
20-
fi
16+
# RUN if [ "$BUILD_DEVELOPMENT" = "True" ]; then \
17+
# pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple/ cms-bluebutton-sdk; \
18+
# else \
19+
# pip install cms-bluebutton-sdk; \
20+
# fi
2121

2222
# If using a local version of the sdk, copy the wheel file and install it
23-
# RUN pip install cms_bluebutton_sdk-1.0.4-py3-none-any.whl
23+
RUN pip install cms_bluebutton_sdk-1.0.4-py3-none-any.whl
2424
RUN pipenv lock
2525
RUN pip install click
2626
RUN pipenv install --system --deploy --ignore-pipfile

server/Pipfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ name = "pypi"
66
[packages]
77
flask = "*"
88
jinja2 = "==3.1.*"
9+
cms-bluebutton-sdk = {path = "cms_bluebutton_sdk-1.0.4-py3-none-any.whl"}
910

1011
[dev-packages]
1112

0 commit comments

Comments
 (0)