This repository has been archived by the owner on Apr 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 159
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Compile IG StructureDefinitions (#219)
- Loading branch information
Showing
7 changed files
with
104 additions
and
28 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# Don't include original .ts files when doing `npm pack` | ||
*.ts | ||
!*.template.ts | ||
!*.d.ts | ||
coverage | ||
.nyc_output | ||
*.tgz | ||
|
||
*.tsbuildinfo | ||
tsconfig.json | ||
.eslintrc.js | ||
.eslintignore | ||
.prettierrc.js | ||
.github | ||
.dockerignore | ||
serverless.yaml | ||
serverless_config.template.json | ||
CODE_OF_CONDUCT.md | ||
CONTRIBUTING.md | ||
CHANGELOG.md | ||
CODEOWNERS | ||
CUSTOMIZE.md | ||
DEVELOPMENT.md | ||
INSTALL.md | ||
LICENSE | ||
NOTICE | ||
README.md | ||
THIRD-PARTY | ||
|
||
auditLogMover/ | ||
bulkExport/ | ||
cloudformation/ | ||
compiledImplementationGuides/ | ||
implementationGuides/ | ||
docker/ | ||
integration-tests/ | ||
postman/ | ||
resources/ | ||
scripts/ | ||
src/ |
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 |
---|---|---|
|
@@ -3,7 +3,8 @@ | |
"version": "2.4.0", | ||
"description": "FHIR Works on AWS deployment", | ||
"stackname": "fhir-works-on-aws-deployment", | ||
"main": "src/index.ts", | ||
"main": "dist/index.js", | ||
"types": "dist/index.d.ts", | ||
"author": { | ||
"name": "Amazon Web Services", | ||
"email": "[email protected]", | ||
|
@@ -68,10 +69,10 @@ | |
"serverless-plugin-typescript": "^1.1.9", | ||
"serverless-step-functions": "^2.27.1", | ||
"sinon": "^9.0.2", | ||
"tmp-promise": "^3.0.2", | ||
"ts-jest": "^26.4.4", | ||
"typescript": "^4.1.3", | ||
"wait-for-expect": "^3.0.2", | ||
"tmp-promise": "^3.0.2" | ||
"wait-for-expect": "^3.0.2" | ||
}, | ||
"resolutions": { | ||
"dot-prop": "^5.1.1", | ||
|
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
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