-
Notifications
You must be signed in to change notification settings - Fork 340
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
Reintroduce dev mode after dropping rollup #195
Conversation
package-lock.json
Outdated
"node_modules/lite-server": { | ||
"version": "2.6.1", |
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.
Risk: All versions of lite-server are vulnerable to a Denial of Service attack, which an attacker could perform by sending malicious HTTP requests containing control characters that the decodeURI() function is unable to parse.
Fix: There are no safe versions of this library available for upgrade. Library included at jwt-decode/package-lock.json:4038.
Reference(s): GHSA-89w7-5q45-r53w, CVE-2022-25940
Ignore this finding from ssc-fca99209-f4e2-4682-9619-96ca735b9acb."prebuild": "rimraf build", | ||
"build": "tsc -b ./tsconfig.cjs.json ./tsconfig.esm.json && echo '{\"type\": \"commonjs\"}'> build/cjs/package.json", | ||
"build:watch": "tsc -b --watch ./tsconfig.cjs.json ./tsconfig.esm.json && echo '{\"type\": \"commonjs\"}'> build/cjs/package.json", |
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.
One thing to note, the last step of this command will never complete, as the TypeScript compiler is running in watch mode.
Co-authored-by: Jon Koops <[email protected]> Co-authored-by: Ewan Harris <[email protected]>
Description
Reintroduce a basic dev mode to allow to test the SDK in a browser while developing.
Checklist