-
Notifications
You must be signed in to change notification settings - Fork 251
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #839 from bugsnag/bengourley/plugin-lazy-framework…
…-ref plugins: Support obtaining React/Vue reference after Bugsnag.start()
- Loading branch information
Showing
18 changed files
with
270 additions
and
139 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,27 +2,27 @@ | |
"name": "@bugsnag/browser", | ||
"version": "7.0.1", | ||
"main": "dist/bugsnag.js", | ||
"types": "dist/types/bugsnag.d.ts", | ||
"types": "types/bugsnag.d.ts", | ||
"description": "Bugsnag error reporter for browser JavaScript", | ||
"homepage": "https://www.bugsnag.com/", | ||
"repository": { | ||
"type": "git", | ||
"url": "[email protected]:bugsnag/bugsnag-js.git" | ||
}, | ||
"browser": { | ||
"dist/types/bugsnag": "./dist/bugsnag.js" | ||
"types/bugsnag": "./dist/bugsnag.js" | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"files": [ | ||
"dist" | ||
"dist", | ||
"types" | ||
], | ||
"scripts": { | ||
"size": "./bin/size", | ||
"clean": "rm -fr dist && mkdir dist", | ||
"bundle-types": "../../bin/bundle-types bugsnag", | ||
"build": "npm run clean && npm run build:dist && npm run build:dist:min && npm run bundle-types", | ||
"build": "npm run clean && npm run build:dist && npm run build:dist:min", | ||
"build:dist": "NODE_ENV=production IS_BROWSER=yes ../../bin/bundle src/notifier.js --standalone=Bugsnag | ../../bin/extract-source-map dist/bugsnag.js", | ||
"build:dist:min": "NODE_ENV=production IS_BROWSER=yes ../../bin/bundle src/notifier.js --standalone=Bugsnag | ../../bin/minify dist/bugsnag.min.js", | ||
"test:types": "jasmine 'types/**/*.test.js'", | ||
|
@@ -56,5 +56,8 @@ | |
"nyc": "^12.0.2", | ||
"semver": "^5.5.1", | ||
"typescript": "^3.7.5" | ||
}, | ||
"dependencies": { | ||
"@bugsnag/core": "^7.0.1" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.