Skip to content

chore: CHARTS-10161 Update react-scripts to v5 #104

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Feb 24, 2025
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,4 @@ dist
*.iml
.nvmrc
.cache
.parcel-cache
2 changes: 1 addition & 1 deletion examples/charts/authenticated-custom-jwt/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@ <h1>Secure Chart Viewer</h1>
<div id="chart"></div>
</div>
</main>
<script src="src/index.js"></script>
<script type="module" src="src/index.js"></script>
</body>
</html>
14,215 changes: 9,699 additions & 4,516 deletions examples/charts/authenticated-custom-jwt/package-lock.json

Large diffs are not rendered by default.

12 changes: 8 additions & 4 deletions examples/charts/authenticated-custom-jwt/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
"name": "mongodb-charts-embedded-sdk-authenticated-demo",
"version": "1.0.0",
"description": "",
"main": "index.html",
"scripts": {
"start": "node app.js & parcel index.html --open",
"build": "parcel build index.html"
Expand All @@ -12,13 +11,18 @@
"cors": "^2.8.5",
"express": "^4.16.3",
"jsonwebtoken": "^8.3.0",
"parcel": "^1.12.4",
"parcel": "^2.13.3",
"regenerator-runtime": "^0.13.3",
"request": "^2.88.2"
},
"devDependencies": {
"@babel/core": "^7.8.6",
"@babel/preset-env": "^7.8.6",
"parcel-bundler": "^1.6.1"
"crypto-browserify": "^3.12.1",
"events": "^3.3.0",
"process": "^0.11.10",
"stream-browserify": "^3.0.0",
"string_decoder": "^1.3.0",
"vm-browserify": "^1.1.2"
}
}
}
Loading