-
Notifications
You must be signed in to change notification settings - Fork 56
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
Replaced Node-sass with Sass, Dockerized Client, Updated Server File Structure #44
base: main
Are you sure you want to change the base?
Conversation
jest.spyOn(RequestHelper, "getWithAutoRetry").mockResolvedValue(mockAxiosResponse); | ||
jest.spyOn(RequestHelper, "putWithAutoRetry").mockResolvedValue(mockAxiosResponse); | ||
jest.spyOn(RequestHelper, "deleteWithAutoRetry").mockResolvedValue(mockAxiosResponse); | ||
// jest.spyOn(RequestHelper, "getWithAutoRetry").mockResolvedValue(mockAxiosResponse); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This needs to be fixed
@@ -18,6 +18,7 @@ export class PdfLoader implements IDocumentLoader { | |||
|
|||
public async setup(): Promise<void> { | |||
this.pdf = await pdfjsLib.getDocument({ | |||
isEvalSupported: false, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is used to resolve the the high vulnerability with pdfjs-dist as highlighted after running npm audit.
More details are found here : GHSA-wgrm-67xf-hhpq
@microsoft-github-policy-service agree |
Replaced Node-sass with Sass,
Resolved npm vulnerabilities,
Dockerized Client,
Updated Readme.md (needs to be updated further)
moved package.json to Server folder and updated server code accordingly