@appland/cli
Advanced tools
Comparing version 1.3.0 to 1.3.1
@@ -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 @@ |
{ | ||
"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 @@ |
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
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
223840
+ Added@appland/models@1.3.0(transitive)
- Removed@appland/models@1.2.0(transitive)
Updated@appland/models@1.3.0