mirror of
https://github.com/nix-community/dream2nix.git
synced 2024-12-19 12:32:11 +03:00
Merge pull request #72 from tomberek/parse_latest
Parse unquoted strings in yarn.lock
This commit is contained in:
commit
03f418ac80
@ -36,7 +36,7 @@ rec {
|
||||
|
||||
singleDependency = bind (skipThen (string " ") (alt quotedString unquotedString)) (parsed_dependency:
|
||||
skipThen (string " ") (
|
||||
bind quotedString (parsed_version:
|
||||
bind (alt quotedString unquotedString) (parsed_version:
|
||||
pure { "${parsed_dependency}" = parsed_version; }
|
||||
)
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user