Skip to content

Fixes #25 Add support for stringifying event data with a maxDepth #127

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 23 commits into from
Mar 17, 2023
Merged
Show file tree
Hide file tree
Changes from 21 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
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,5 +39,6 @@
"javascript",
"typescript"
],
"deno.enable": false
"deno.enable": false,
"jest.jestCommandLine": "npm test --"
}
63 changes: 63 additions & 0 deletions Exceptionless.JavaScript.code-workspace
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
{
"folders": [
{
"path": "."
},
{
"name": "core",
"path": "packages/core"
},
{
"name": "browser",
"path": "packages/browser"
},
{
"name": "angularjs",
"path": "packages/angularjs"
},
{
"name": "node",
"path": "packages/node"
},
{
"name": "react",
"path": "packages/react"
},
{
"name": "vue",
"path": "packages/vue"
},
{
"name": "svelte-kit",
"path": "example/svelte-kit"
},
{
"name": "vue",
"path": "example/vue"
},
{
"name": "react",
"path": "example/react"
},
{
"name": "express",
"path": "example/express"
},
{
"name": "browser",
"path": "example/browser"
}
],
"settings": {
"typescript.tsdk": "./node_modules/typescript/lib",
"jest.disabledWorkspaceFolders": [
"angularjs",
"vue",
"svelte-kit",
"vue",
"react",
"express",
"browser"
]
}
}
2 changes: 1 addition & 1 deletion example/browser/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@
},
"dependencies": {
"@exceptionless/browser": "2.0.0-dev",
"jquery": "^3.6.3"
"jquery": "^3.6.4"
}
}
2 changes: 1 addition & 1 deletion example/express/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"author": "Exceptionless",
"license": "Apache-2.0",
"scripts": {
"dev": "nodemon app.js --enable-source-maps",
"dev": "node app.js --enable-source-maps --watch",
"start": "node app.js --enable-source-maps"
},
"publishConfig": {
Expand Down
2 changes: 1 addition & 1 deletion example/react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"@exceptionless/react": "2.0.0-dev",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"web-vitals": "^3.1.1"
"web-vitals": "^3.3.0"
},
"publishConfig": {
"access": "restricted"
Expand Down
8 changes: 4 additions & 4 deletions example/svelte-kit/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@
},
"devDependencies": {
"@sveltejs/adapter-auto": "^2.0.0",
"@sveltejs/kit": "^1.8.8",
"svelte": "^3.55.1",
"svelte-check": "^3.0.4",
"@sveltejs/kit": "^1.12.0",
"svelte": "^3.57.0",
"svelte-check": "^3.1.4",
"typescript": "^4.9.5",
"vite": "^4.1.4"
"vite": "^4.2.0"
},
"type": "module",
"publishConfig": {
Expand Down
2 changes: 1 addition & 1 deletion example/vue/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"@exceptionless/vue": "2.0.0-dev"
},
"devDependencies": {
"@vitejs/plugin-vue": "^4.0.0",
"@vitejs/plugin-vue": "^4.1.0",
"@vue/compiler-sfc": "^3.2.47",
"vite": "^4.1.1"
},
Expand Down
Loading