Skip to content

Upgrade dependencies and fix linting issues. #105

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 15 commits into from
Feb 15, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Updated Deps
  • Loading branch information
niemyjski committed Feb 10, 2023
commit 74e570a2c7f3ec7eec351a9dd0eb2145fd26da30
2 changes: 1 addition & 1 deletion example/express/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"access": "restricted"
},
"dependencies": {
"express": "4.17.1",
"express": "^4.18.2",
"@exceptionless/node": "2.0.0-dev"
}
}
14 changes: 7 additions & 7 deletions example/react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,16 +28,16 @@
]
},
"devDependencies": {
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/user-event": "^13.2.1",
"react-scripts": "4.0.3"
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"react-scripts": "^5.0.1"
},
"dependencies": {
"@exceptionless/react": "2.0.0-dev",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"web-vitals": "^2.1.0"
"react": "^18.2.0",
"react-dom": "^18.2.0",
"web-vitals": "^3.1.1"
},
"publishConfig": {
"access": "restricted"
Expand Down
10 changes: 6 additions & 4 deletions example/react/src/index.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
import React from 'react';
import ReactDOM from 'react-dom';
import { createRoot } from 'react-dom/client';
import './index.css';
import App from './App';
import reportWebVitals from './reportWebVitals';

ReactDOM.render(
const container = document.getElementById('root');
const root = createRoot(container);

root.render(
<React.StrictMode>
<App />
</React.StrictMode>,
document.getElementById('root')
</React.StrictMode>
);

// If you want to start measuring performance in your app, pass a function
Expand Down
8 changes: 4 additions & 4 deletions example/vue/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@
"serve": "vite preview"
},
"dependencies": {
"vue": "^3.2.11",
"vue": "^3.2.47",
"@exceptionless/vue": "2.0.0-dev"
},
"devDependencies": {
"@vitejs/plugin-vue": "^1.6.2",
"@vue/compiler-sfc": "^3.2.11",
"vite": "^2.5.6"
"@vitejs/plugin-vue": "^4.0.0",
"@vue/compiler-sfc": "^3.2.47",
"vite": "^4.1.1"
},
"publishConfig": {
"access": "restricted"
Expand Down
Loading