🚨 Active Supply Chain Attack:node-ipc Package Compromised.Learn More
Socket
Book a DemoSign in
Socket

@nuxtjs/sentry

Package Overview
Dependencies
Maintainers
9
Versions
123
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nuxtjs/sentry - npm Package Compare versions

Comparing version
3.2.1
to
3.2.2
+5
types/global.d.ts
declare namespace NodeJS {
interface Process {
sentry: typeof import('@sentry/node');
}
}
+7
-0

@@ -5,2 +5,9 @@ # Changelog

### [3.2.2](https://github.com/nuxt-community/sentry-module/compare/v3.2.1...v3.2.2) (2020-02-03)
### Bug Fixes
* **types:** use @sentry/minimal instead of @sentry/types ([#142](https://github.com/nuxt-community/sentry-module/issues/142)) ([de1874c](https://github.com/nuxt-community/sentry-module/commit/de1874cc3744052bef702f7c33f484c84b409119))
### [3.2.1](https://github.com/nuxt-community/sentry-module/compare/v3.2.0...v3.2.1) (2020-01-31)

@@ -7,0 +14,0 @@

+1
-2
{
"name": "@nuxtjs/sentry",
"version": "3.2.1",
"version": "3.2.2",
"description": "Sentry module for Nuxt.js",

@@ -27,3 +27,2 @@ "repository": "nuxt-community/sentry-module",

"@sentry/webpack-plugin": "^1.9.3",
"@sentry/types": "^5.11.0",
"consola": "^2.11.3",

@@ -30,0 +29,0 @@ "deepmerge": "^4.2.2"

@@ -1,2 +0,2 @@

import { Client } from '@sentry/types';
import * as SentryTypes from '@sentry/minimal';

@@ -6,3 +6,3 @@ // add type to Vue context

interface Vue {
readonly $sentry: Client;
readonly $sentry: typeof SentryTypes;
}

@@ -14,7 +14,7 @@ }

interface Context {
readonly $sentry: Client;
readonly $sentry: typeof SentryTypes;
}
interface NuxtAppOptions {
readonly $sentry: Client;
readonly $sentry: typeof SentryTypes;
}

@@ -26,4 +26,4 @@ }

interface Store<S> {
readonly $sentry: Client;
readonly $sentry: typeof SentryTypes;
}
}