Socket
Socket
Sign inDemoInstall

@appsignal/plugin-breadcrumbs-console

Package Overview
Dependencies
13
Maintainers
9
Versions
39
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.1.24 to 1.1.25

6

CHANGELOG.md
# AppSignal for plugin-breadcrumbs-console changelog
## 1.1.25
### Changed
- patch - Update @appsignal/javascript dependency to 1.3.24.
## 1.1.24

@@ -4,0 +10,0 @@

6

dist/cjs/index.js

@@ -23,7 +23,7 @@ "use strict";

: "Console logged a value",
category: "console." + method,
category: "console.".concat(method),
metadata: {}
};
args.forEach(function (arg, i) {
return (breadcrumb.metadata["argument" + i] =
return (breadcrumb.metadata["argument".concat(i)] =
serializeValue(arg, method));

@@ -56,3 +56,3 @@ });

if (i !== -1) {
return "[cyclic value: " + (seenKey[i] || "root object") + "]";
return "[cyclic value: ".concat(seenKey[i] || "root object", "]");
}

@@ -59,0 +59,0 @@ else {

@@ -20,7 +20,7 @@ var SUPPORTED_CONSOLE_METHODS = ["log", "debug", "info", "warn", "error"];

: "Console logged a value",
category: "console." + method,
category: "console.".concat(method),
metadata: {}
};
args.forEach(function (arg, i) {
return (breadcrumb.metadata["argument" + i] =
return (breadcrumb.metadata["argument".concat(i)] =
serializeValue(arg, method));

@@ -53,3 +53,3 @@ });

if (i !== -1) {
return "[cyclic value: " + (seenKey[i] || "root object") + "]";
return "[cyclic value: ".concat(seenKey[i] || "root object", "]");
}

@@ -56,0 +56,0 @@ else {

{
"name": "@appsignal/plugin-breadcrumbs-console",
"version": "1.1.24",
"version": "1.1.25",
"main": "dist/cjs/index.js",

@@ -28,3 +28,3 @@ "module": "dist/esm/index.js",

"dependencies": {
"@appsignal/javascript": "=1.3.23"
"@appsignal/javascript": "=1.3.24"
},

@@ -31,0 +31,0 @@ "devDependencies": {

@@ -9,2 +9,4 @@ # `@appsignal/plugin-breadcrumbs-console`

See also the [mono repo README](../../README.md) for more information.
## Installation

@@ -27,3 +29,3 @@

const appsignal = new Appsignal({
const appsignal = new Appsignal({
key: "YOUR FRONTEND API KEY"

@@ -39,11 +41,4 @@ })

This repository is a Lerna-managed monorepo, containing packages (located in the `/packages` directory) that map to separate `npm` modules.
Make sure mono is installed and bootstrapped, see the [project README's development section](../../README.md#dev-install) for more information.
To install the dependencies:
```bash
yarn install
lerna bootstrap
```
You can then run the following to start the compiler in _watch_ mode. This automatically compiles both the ES Module and CommonJS variants:

@@ -50,0 +45,0 @@

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc