Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@appland/cli

Package Overview
Dependencies
Maintainers
4
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@appland/cli - npm Package Compare versions

Comparing version 1.3.0 to 1.3.1

7

CHANGELOG.md

@@ -0,1 +1,8 @@

# [@appland/cli-v1.3.1](https://github.com/applandinc/appmap-js/compare/@appland/cli-v1.3.0...@appland/cli-v1.3.1) (2021-07-02)
### Bug Fixes
* Find all matching events in each AppMap ([de578c7](https://github.com/applandinc/appmap-js/commit/de578c73864e10c6b815ac460fb94b8a0b4eab92))
# [@appland/cli-v1.3.0](https://github.com/applandinc/appmap-js/compare/@appland/cli-v1.2.0...@appland/cli-v1.3.0) (2021-07-02)

@@ -2,0 +9,0 @@

4

package.json
{
"name": "@appland/cli",
"version": "1.3.0",
"version": "1.3.1",
"description": "",

@@ -36,3 +36,3 @@ "main": "src/cli.js",

"dependencies": {
"@appland/models": "1.2.0",
"@appland/models": "1.3.0",
"async": "^3.2.0",

@@ -39,0 +39,0 @@ "chokidar": "^3.5.1",

@@ -54,2 +54,3 @@ // @ts-check

}
this.depth += 1;
return MATCH_COMPLETE;

@@ -56,0 +57,0 @@ }

@@ -238,3 +238,2 @@ // @ts-check

let match = null;
const findMatchingFunction = (

@@ -245,6 +244,2 @@ /** @type {import('./types').CodeObject} */ item,

) => {
if (match) {
return;
}
const buildCodeObject = () => {

@@ -258,2 +253,3 @@ let parent = null;

let match;
const matchResult = matcher.match(item);

@@ -269,3 +265,2 @@ switch (matchResult) {

matches.push(match);
return;
case MATCH_CONTINUE:

@@ -272,0 +267,0 @@ default:

@@ -54,3 +54,6 @@ // @ts-check

const co = this.codeObjectFn(this.event);
return co ? co.id : null;
if (co) {
return normalizeId(co, this.event);
}
return null;
}

@@ -57,0 +60,0 @@

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