Socket
Socket
Sign inDemoInstall

@sentry/vue

Package Overview
Dependencies
Maintainers
12
Versions
345
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@sentry/vue - npm Package Compare versions

Comparing version 6.15.0 to 6.16.0

5

dist/tracing.js

@@ -7,2 +7,3 @@ Object.defineProperty(exports, "__esModule", { value: true });

var constants_1 = require("./constants");
var VUE_OP = 'ui.vue';
// Mappings from operation to corresponding lifecycle hook.

@@ -64,3 +65,3 @@ var HOOKS = {

description: 'Application Render',
op: 'vue',
op: VUE_OP,
});

@@ -91,3 +92,3 @@ }

description: "Vue <" + name + ">",
op: operation,
op: VUE_OP + "." + operation,
});

@@ -94,0 +95,0 @@ }

@@ -6,2 +6,3 @@ import { __values } from "tslib";

import { DEFAULT_HOOKS } from './constants';
var VUE_OP = 'ui.vue';
// Mappings from operation to corresponding lifecycle hook.

@@ -63,3 +64,3 @@ var HOOKS = {

description: 'Application Render',
op: 'vue',
op: VUE_OP,
});

@@ -90,3 +91,3 @@ }

description: "Vue <" + name + ">",
op: operation,
op: VUE_OP + "." + operation,
});

@@ -93,0 +94,0 @@ }

34

package.json
{
"name": "@sentry/vue",
"version": "6.15.0",
"version": "6.16.0",
"description": "Official Sentry SDK for Vue.js",

@@ -19,7 +19,7 @@ "repository": "git://github.com/getsentry/sentry-javascript.git",

"dependencies": {
"@sentry/browser": "6.15.0",
"@sentry/core": "6.15.0",
"@sentry/minimal": "6.15.0",
"@sentry/types": "6.15.0",
"@sentry/utils": "6.15.0",
"@sentry/browser": "6.16.0",
"@sentry/core": "6.16.0",
"@sentry/minimal": "6.16.0",
"@sentry/types": "6.16.0",
"@sentry/utils": "6.16.0",
"tslib": "^1.9.3"

@@ -32,7 +32,3 @@ },

"devDependencies": {
"jest": "^24.7.1",
"jsdom": "^16.2.2",
"npm-run-all": "^4.1.2",
"prettier": "1.19.0",
"rimraf": "^2.6.3",
"rollup": "^1.10.1",

@@ -47,11 +43,13 @@ "rollup-plugin-commonjs": "^9.3.4",

"scripts": {
"build": "run-p build:es5 build:esm build:bundle",
"build": "run-p build:cjs build:esm build:bundle",
"build:bundle": "rollup --config",
"build:dev": "run-s build:es5 build:esm",
"build:es5": "tsc -p tsconfig.build.json",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:dev": "run-s build:cjs build:esm",
"build:es5": "yarn build:cjs # *** backwards compatibility - remove in v7 ***",
"build:esm": "tsc -p tsconfig.esm.json",
"build:watch": "run-p build:es5:watch build:esm:watch",
"build:watch": "run-p build:cjs:watch build:esm:watch",
"build:bundle:watch": "rollup --config --watch",
"build:dev:watch": "run-p build:es5:watch build:esm:watch",
"build:es5:watch": "tsc -p tsconfig.build.json -w --preserveWatchOutput",
"build:cjs:watch": "tsc -p tsconfig.cjs.json -w --preserveWatchOutput",
"build:dev:watch": "run-s build:watch",
"build:es5:watch": "yarn build:cjs:watch # *** backwards compatibility - remove in v7 ***",
"build:esm:watch": "tsc -p tsconfig.esm.json -w --preserveWatchOutput",

@@ -94,5 +92,3 @@ "circularDepCheck": "madge --circular src/index.ts",

},
"sideEffects": [
"./src/index.ts"
]
"sideEffects": false
}

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc