@honeybadger-io/js 6.5.0 → 6.5.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +24 -2
- package/dist/browser/honeybadger.d.ts +1 -0
- package/dist/browser/honeybadger.js +14 -10
- package/dist/browser/honeybadger.js.map +1 -1
- package/dist/browser/honeybadger.min.js +1 -1
- package/dist/browser/honeybadger.min.js.map +1 -1
- package/dist/server/honeybadger.js +2 -2
- package/package.json +5 -5
|
@@ -871,7 +871,7 @@ var Client = /** @class */ (function () {
|
|
|
871
871
|
this.__notifier = {
|
|
872
872
|
name: '@honeybadger-io/core',
|
|
873
873
|
url: 'https://github.com/honeybadger-io/honeybadger-js/tree/master/packages/core',
|
|
874
|
-
version: '6.5.
|
|
874
|
+
version: '6.5.2'
|
|
875
875
|
};
|
|
876
876
|
this.config = __assign({ apiKey: null, endpoint: 'https://api.honeybadger.io', environment: null, hostname: null, projectRoot: null, component: null, action: null, revision: null, reportData: null, breadcrumbsEnabled: true, maxBreadcrumbs: 40, maxObjectDepth: 8, logger: console, developmentEnvironments: ['dev', 'development', 'test'], debug: false, tags: null, enableUncaught: true, enableUnhandledRejection: true, afterUncaught: function () { return true; }, filters: ['creditcard', 'password'], __plugins: [] }, opts);
|
|
877
877
|
this.__initStore();
|
|
@@ -2069,7 +2069,7 @@ stacked_store.StackedStore = StackedStore;
|
|
|
2069
2069
|
var NOTIFIER = {
|
|
2070
2070
|
name: '@honeybadger-io/js',
|
|
2071
2071
|
url: 'https://github.com/honeybadger-io/honeybadger-js/tree/master/packages/js',
|
|
2072
|
-
version: '6.5.
|
|
2072
|
+
version: '6.5.2'
|
|
2073
2073
|
};
|
|
2074
2074
|
singleton.setNotifier(NOTIFIER);
|
|
2075
2075
|
var core_2 = src;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@honeybadger-io/js",
|
|
3
|
-
"version": "6.5.
|
|
3
|
+
"version": "6.5.2",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"homepage": "https://github.com/honeybadger-io/honeybadger-js/tree/master/packages/js",
|
|
6
6
|
"author": {
|
|
@@ -43,9 +43,7 @@
|
|
|
43
43
|
"test": "npm run test:browser && npm run test:server && npm run tsd",
|
|
44
44
|
"test:browser": "jest --env=jsdom --setupFiles=\"<rootDir>/test/unit/jest-browser-setup.js\" --testPathPattern=\"test/unit/.*(?<![\\./]server)\\.test\\.(js|ts)\"",
|
|
45
45
|
"test:server": "jest --env=node --testPathPattern=\"test/unit/.*(?<![\\./]browser)\\.test\\.(js|ts)\"",
|
|
46
|
-
"test:integration": "test
|
|
47
|
-
"test:integration:browserstack": "npm run test:integration",
|
|
48
|
-
"test:integration:headless": "HEADLESS=1 npm run test:integration",
|
|
46
|
+
"test:integration": "npx playwright test --config test/e2e/playwright.config.ts",
|
|
49
47
|
"tsd": "tsd",
|
|
50
48
|
"postpublish": "./scripts/release-cdn.sh"
|
|
51
49
|
},
|
|
@@ -55,11 +53,13 @@
|
|
|
55
53
|
"@types/express": "^4.17.13"
|
|
56
54
|
},
|
|
57
55
|
"devDependencies": {
|
|
56
|
+
"@playwright/test": "^1.37.1",
|
|
58
57
|
"@rollup/plugin-commonjs": "^22.0.1",
|
|
59
58
|
"@rollup/plugin-node-resolve": "^13.3.0",
|
|
60
59
|
"@rollup/plugin-replace": "^5.0.2",
|
|
61
60
|
"@types/jest": "^27.0.3",
|
|
62
61
|
"@types/node": "^17.0.45",
|
|
62
|
+
"browserstack-local": "^1.5.4",
|
|
63
63
|
"express": "^4.17.1",
|
|
64
64
|
"jest": "^27.4.4",
|
|
65
65
|
"jest-fetch-mock": "^3.0.3",
|
|
@@ -78,5 +78,5 @@
|
|
|
78
78
|
"engines": {
|
|
79
79
|
"node": ">=14"
|
|
80
80
|
},
|
|
81
|
-
"gitHead": "
|
|
81
|
+
"gitHead": "96a0f90cd1cac6cf09f074af70199744d757995c"
|
|
82
82
|
}
|