-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow path-resource paths with a wildcard (#1427)
* Allow path-resource paths with wildcard to add deeply nested files * Use what Node 16 knows * Fix up tests * Use what Node 18 knows * Fix path separator and simplify logic - Simplify logic when looking for one level and recurive directories - Update comment to reflect new logic - Use consitent / path separator in the path-resource parameter * Allow parameters list to be empty in config
- Loading branch information
Showing
6 changed files
with
106 additions
and
10 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
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
13 changes: 13 additions & 0 deletions
13
...ested-resources/input/resources/path-resource-double-nest/jack/examples/Patient-Jack.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,13 @@ | ||
{ | ||
"resourceType": "Patient", | ||
"id": "Jack", | ||
"name": [ | ||
{ | ||
"family": "Anyperson", | ||
"given": [ | ||
"Jack", | ||
"C." | ||
] | ||
} | ||
] | ||
} |
13 changes: 13 additions & 0 deletions
13
...ig-with-nested-resources/input/resources/path-resource-double-nest/john/Patient-John.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,13 @@ | ||
{ | ||
"resourceType": "Patient", | ||
"id": "John", | ||
"name": [ | ||
{ | ||
"family": "Anyperson", | ||
"given": [ | ||
"John", | ||
"B." | ||
] | ||
} | ||
] | ||
} |