-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: filter deps by target framework
When target framework option is provided, resulting depTree should contain only dependencies with particular target framework entry
- Loading branch information
Mila Votradovec
committed
Jan 4, 2019
1 parent
b8f45f2
commit 9d4ece5
Showing
4 changed files
with
39 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
test/fixtures/dotnet-multiple-target-frameworks/expected-tree-net46.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"dependencies": { | ||
"jQuery": { | ||
"depType": "prod", | ||
"dependencies": {}, | ||
"name": "jQuery", | ||
"version": "3.1.1" | ||
}, | ||
"NLog": { | ||
"depType": "prod", | ||
"dependencies": {}, | ||
"name": "NLog", | ||
"version": "4.3.10" | ||
} | ||
}, | ||
"hasDevDependencies": false, | ||
"name": "", | ||
"version": "" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters