Skip to content

Commit

Permalink
Merge pull request #18 from snyk/feat/drop-group-id-and-artifact-id
Browse files Browse the repository at this point in the history
BREAKING CHANGE: drop unused groupId and artifactId attributes from response
  • Loading branch information
darscan committed Sep 25, 2018
2 parents 231a29a + 4e18501 commit 330713d
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions lib/parse-sbt.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,7 @@ function walkInTree(toNode, fromNode) {
var externalNode = getPackageNameAndVersion(
fromNode.children[j].data);
if (externalNode) {
var coords = externalNode.name.split(':');
var newNode = {
groupId: coords[0],
artifactId: coords[1],
version: externalNode.version,
name: externalNode.name,
dependencies: [],
Expand Down

0 comments on commit 330713d

Please sign in to comment.