@sentry/core
Advanced tools
Comparing version 0.3.0 to 0.4.0-0
@@ -1,5 +0,4 @@ | ||
export * from './lib/Sentry'; | ||
export * from './lib/Interfaces'; | ||
export * from './lib/Adapter'; | ||
export { IOptions } from './lib/Options'; | ||
export { Client } from './lib/Client'; | ||
export { default as DSN } from './lib/dsn'; | ||
export { default as Client } from './lib/client'; | ||
export * from './lib/sentry'; | ||
export * from './lib/interfaces'; |
@@ -6,6 +6,8 @@ "use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
__export(require("./lib/Sentry")); | ||
__export(require("./lib/Interfaces")); | ||
var Client_1 = require("./lib/Client"); | ||
exports.Client = Client_1.Client; | ||
var dsn_1 = require("./lib/dsn"); | ||
exports.DSN = dsn_1.default; | ||
var client_1 = require("./lib/client"); | ||
exports.Client = client_1.default; | ||
__export(require("./lib/sentry")); | ||
__export(require("./lib/interfaces")); | ||
//# sourceMappingURL=index.js.map |
{ | ||
"name": "@sentry/core", | ||
"version": "0.3.0", | ||
"version": "0.4.0-0", | ||
"description": "Sentry core implementation for all JavaScript related SDKs", | ||
"author": "Sentry", | ||
"license": "MIT", | ||
"engines": { | ||
"node": ">=6" | ||
}, | ||
"main": "dist/index.js", | ||
"typings": "dist/index.d.ts", | ||
"typescript": { | ||
"definition": "dist/index.d.ts" | ||
"types": "dist/index.d.ts", | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"dependencies": {}, | ||
"devDependencies": { | ||
"@types/jest": "^22.0.1", | ||
"@types/node": "^9.3.0", | ||
"jest": "^22.0.6", | ||
"npm-run-all": "^4.1.2", | ||
"prettier": "^1.10.2", | ||
"ts-jest": "^22.0.1", | ||
"ts-node": "^4.1.0", | ||
"tslint": "^5.9.1", | ||
"tslint-config-prettier": "^1.6.0", | ||
"tslint-eslint-rules": "^4.1.1", | ||
"typescript": "2.6.2", | ||
"vrsource-tslint-rules": "^5.8.0" | ||
"@types/jest": "*", | ||
"jest": "*", | ||
"npm-run-all": "*", | ||
"prettier": "*", | ||
"rimraf": "*", | ||
"ts-jest": "*", | ||
"tslint": "*", | ||
"typescript": "*" | ||
}, | ||
"engines": { | ||
"node": ">=6.9.5", | ||
"npm": ">=3.10.7", | ||
"yarn": ">=1.0.2" | ||
}, | ||
"scripts": { | ||
"clean": "rm -rf ./dist", | ||
"dist": "npm run clean && tsc -p tsconfig.json", | ||
"test:browser": "jest --env=jsdom", | ||
"test:node": "jest --env=node", | ||
"test:watch": "jest --watch --notify", | ||
"test": "npm-run-all dist test:browser test:node" | ||
"build": "tsc", | ||
"clean": "rimraf dist coverage", | ||
"lint": "tslint --config ../../tslint.json src/**/*", | ||
"format": "prettier --config ../../.prettierrc.json src/**/* --write", | ||
"test": "jest", | ||
"test:watch": "jest --watch --notify" | ||
}, | ||
@@ -44,29 +39,14 @@ "jest": { | ||
}, | ||
"mapCoverage": true, | ||
"collectCoverage": true, | ||
"coveragePathIgnorePatterns": [ | ||
"dist" | ||
], | ||
"transform": { | ||
"^.+\\.tsx?$": "ts-jest" | ||
"^.+\\.ts$": "ts-jest" | ||
}, | ||
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$", | ||
"moduleFileExtensions": [ | ||
"ts", | ||
"tsx", | ||
"js", | ||
"jsx", | ||
"json" | ||
"ts" | ||
], | ||
"modulePathIgnorePatterns": [ | ||
"<rootDir>/dist/__mocks__" | ||
], | ||
"testPathIgnorePatterns": [ | ||
"/node_modules/", | ||
"\\.d\\.(jsx?|tsx?)$", | ||
"\\.no-jest\\.(jsx?|tsx?)$" | ||
"testMatch": [ | ||
"**/*.test.ts" | ||
] | ||
}, | ||
"author": "Sentry", | ||
"license": "MIT" | ||
} | ||
} |
@@ -15,3 +15,4 @@ <p align="center"> | ||
This package is meant to be used with other SDK Packages like Browser, Cordova, React Native. | ||
It is the public facing API and streamlines all JavaScript related SDKs. | ||
This package is meant to be used with other SDK Packages like Browser, Cordova, | ||
React Native. It is the public facing API and streamlines all JavaScript related | ||
SDKs. |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
8
18
44445
20
680
1