Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump @swc/cli from 0.1.63 to 0.5.0 #1043

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Bump @swc/cli from 0.1.63 to 0.5.0
Bumps [@swc/cli](https://github.com/swc-project/pkgs) from 0.1.63 to 0.5.0.
- [Commits](https://github.com/swc-project/pkgs/commits)

---
updated-dependencies:
- dependency-name: "@swc/cli"
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
dependabot[bot] authored Oct 30, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit c463940bf2bc665a4b3f3f1083fd2f9fb5e02371
342 changes: 334 additions & 8 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/smart-forms-renderer/package.json
Original file line number Diff line number Diff line change
@@ -72,7 +72,7 @@
"@storybook/react-vite": "^8.3.4",
"@storybook/test": "^8.3.4",
"@storybook/types": "^8.3.4",
"@swc/cli": "^0.1.63",
"@swc/cli": "^0.5.0",
"@swc/core": "^1.5.28",
"@testing-library/jest-dom": "^6.1.2",
"@testing-library/react": "^14.2.1",

Unchanged files with check annotations Beta

}
if (activeTab === 'nlm') {
// @ts-ignore

Check warning on line 76 in apps/demo-renderer-app/src/components/FormViewer.tsx

GitHub Actions / Lint

Use "@ts-expect-error" instead of "@ts-ignore", as "@ts-ignore" will do nothing if the following line is error-free
result.resource = LForms.Util.getFormFHIRData(
'QuestionnaireResponse',
'R4',
formId: string,
options: object
): Promise<void>;
function setFHIRContext(fhirContext: any, fhirContextVars: any): void;

Check warning on line 29 in apps/demo-renderer-app/src/components/LhcFormsRenderer.tsx

GitHub Actions / Lint

Unexpected any. Specify a different type

Check warning on line 29 in apps/demo-renderer-app/src/components/LhcFormsRenderer.tsx

GitHub Actions / Lint

Unexpected any. Specify a different type
function getFormFHIRData(
resourceType: 'QuestionnaireResponse', //
fhirVersion: string,
formId: string,
options?: object
): QuestionnaireResponse;
function convertFHIRQuestionnaireToLForms(questionnaire: Questionnaire, fhirVersion: string): any;

Check warning on line 36 in apps/demo-renderer-app/src/components/LhcFormsRenderer.tsx

GitHub Actions / Lint

Unexpected any. Specify a different type
function mergeFHIRDataIntoLForms(
resourceType: 'QuestionnaireResponse',
response: QuestionnaireResponse | undefined,
lhcQ: any,

Check warning on line 40 in apps/demo-renderer-app/src/components/LhcFormsRenderer.tsx

GitHub Actions / Lint

Unexpected any. Specify a different type
fhirVersion: string
): any;

Check warning on line 42 in apps/demo-renderer-app/src/components/LhcFormsRenderer.tsx

GitHub Actions / Lint

Unexpected any. Specify a different type
}
declare global {
interface Window {
LForms: any;

Check warning on line 47 in apps/demo-renderer-app/src/components/LhcFormsRenderer.tsx

GitHub Actions / Lint

Unexpected any. Specify a different type
}
}
return response.json();
}
export function questionnaireIsValid(questionnaire: any): questionnaire is Questionnaire {

Check warning on line 45 in apps/demo-renderer-app/src/utils/fetchResource.ts

GitHub Actions / Lint

Unexpected any. Specify a different type
return questionnaire.resourceType === 'Questionnaire' && questionnaire.item;
}
export function patientIsValid(patient: any): patient is Patient {

Check warning on line 49 in apps/demo-renderer-app/src/utils/fetchResource.ts

GitHub Actions / Lint

Unexpected any. Specify a different type
return patient.resourceType === 'Patient' && patient.id && patient.name;
}
export function practitionerIsValid(practitioner: any): practitioner is Practitioner {

Check warning on line 53 in apps/demo-renderer-app/src/utils/fetchResource.ts

GitHub Actions / Lint

Unexpected any. Specify a different type
return practitioner.resourceType === 'Practitioner' && practitioner.id && practitioner.name;
}