Skip to content

Commit b4db1a9

Browse files
committed
feat: update to latest SDKs REQUIRES Sentry 20.6.0 +
1 parent b24f2b8 commit b4db1a9

38 files changed

+5835
-9118
lines changed

Diff for: .eslintrc.js

+7-3
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,13 @@ module.exports = {
44
},
55
parser: '@typescript-eslint/parser',
66
parserOptions: {
7-
createDefaultProgram: true,
8-
project: 'tsconfig.json',
9-
sourceType: 'module'
7+
ecmaVersion: 2019,
8+
sourceType: 'module',
9+
parser: '@typescript-eslint/parser',
10+
project: 'tsconfig.eslint.json',
11+
extraFileExtensions: ['.svelte'],
12+
warnOnUnsupportedTypeScriptVersion: false,
13+
tsconfigRootDir: __dirname
1014
},
1115
plugins: ['@typescript-eslint'],
1216
rules: {

Diff for: .prettierrc

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,6 @@
22
"printWidth": 200,
33
"semi": true,
44
"tabWidth": 4,
5-
"singleQuote": true
5+
"singleQuote": true,
6+
"trailingComma": "none"
67
}

Diff for: demo-vue/.migration_backup/_backup.json

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"name": "migration",
3+
"paths": [
4+
"hooks",
5+
"webpack.config.js",
6+
"package.json",
7+
"tsconfig.tns.json",
8+
"app/package.json",
9+
"package.json",
10+
"app/package.json"
11+
]
12+
}
File renamed without changes.

Diff for: demo-vue/.migration_backup/package.json

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
{
2+
"description": "NativeScript Bugsnag Demo",
3+
"license": "SEE LICENSE IN LICENSE.md",
4+
"readme": "README.md",
5+
"repository": "http://www.github.com/nativescript-community/sentry.git",
6+
"nativescript": {
7+
"id": "org.nativescript.demovuesentry",
8+
"tns-android": {
9+
"version": "6.4.1"
10+
}
11+
},
12+
"dependencies": {
13+
"@nativescript/core": "^6.5.10",
14+
"nativescript-vue": "2.7.0",
15+
"@nativescript-community/sentry": "../plugin",
16+
"nativescript-extendedinfo": "^1.0.11",
17+
"@sentry/browser": "^5.19.2",
18+
"@sentry/core": "^5.19.2",
19+
"@sentry/hub": "^5.19.2",
20+
"@sentry/integrations": "^5.19.2",
21+
"@sentry/minimal": "^5.19.2",
22+
"@sentry/types": "^5.19.2",
23+
"@sentry/utils": "^5.19.2",
24+
"@sentry/wizard": "^1.1.4",
25+
"stacktrace-parser": "0.1.10"
26+
},
27+
"devDependencies": {
28+
"@sentry/webpack-plugin": "^1.12.0",
29+
"@babel/core": "^7.10.5",
30+
"@babel/preset-env": "^7.10.4",
31+
"babel-loader": "^8.1.0",
32+
"clean-webpack-plugin": "^3.0.0",
33+
"copy-webpack-plugin": "5.1.1",
34+
"cross-var": "^1.1.0",
35+
"css-loader": "^3.6.0",
36+
"fsevents": "2.1.3",
37+
"nativescript-dev-webpack": "^1.5.1",
38+
"nativescript-vue-template-compiler": "^2.7.0",
39+
"node-sass": "^4.14.1",
40+
"sass-loader": "^8.0.2",
41+
"scss-symbols-parser": "^2.0.1",
42+
"semver": "7.3.2",
43+
"string-replace-loader": "^2.3.0",
44+
"tns-platform-declarations": "^6.5.10",
45+
"typescript": "^3.9.7",
46+
"vue": "^2.6.11",
47+
"vue-loader": "^15.9.2",
48+
"vue-property-decorator": "^8.5.1",
49+
"webpack": "^4.43.0",
50+
"webpack-cli": "^3.3.12"
51+
},
52+
"scripts": {}
53+
}
File renamed without changes.

0 commit comments

Comments
 (0)