Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
feat: use cli-interface with TargetFile in meta
- bump @snyk/cli-interface to 2.9.0
- add gradle build artifacts from test/ to .gitignore
- small fix to the spinner clear for npm projects
  • Loading branch information
lili2311 committed Aug 27, 2020
1 parent cbdbcd3 commit 53a90d4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -24,3 +24,4 @@ report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
/test/acceptance/workspaces/**/project/
/test/acceptance/workspaces/**/target/
test/acceptance/workspaces/**/.gradle
test/**/.gradle
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -53,7 +53,7 @@
"author": "snyk.io",
"license": "Apache-2.0",
"dependencies": {
"@snyk/cli-interface": "2.8.1",
"@snyk/cli-interface": "2.9.0",
"@snyk/dep-graph": "1.19.3",
"@snyk/gemfile": "1.2.0",
"@snyk/graphlib": "2.1.9-patch",
Expand Down
2 changes: 1 addition & 1 deletion src/lib/plugins/nodejs-plugin/npm-lock-parser.ts
Expand Up @@ -58,6 +58,6 @@ export async function parse(
strictOutOfSync,
);
} finally {
await spinner.clear(resolveModuleSpinnerLabel);
await spinner.clear<void>(resolveModuleSpinnerLabel)();
}
}

0 comments on commit 53a90d4

Please sign in to comment.