Skip to content

Commit

Permalink
Resolve All DevTools Console Warnings (All pages)
Browse files Browse the repository at this point in the history
  • Loading branch information
ashuvssut committed May 30, 2021
1 parent 18622a3 commit d09d8d8
Show file tree
Hide file tree
Showing 8 changed files with 231 additions and 241 deletions.
293 changes: 144 additions & 149 deletions package-lock.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@
"jszip": "^3.6.0",
"leaflet": "^1.7.1",
"mousetrap": "^1.6.5",
"react": "^17.0.1",
"react": "^17.0.2",
"react-bootstrap": "^1.5.2",
"react-dom": "^17.0.1",
"react-dom": "^17.0.2",
"react-dropzone": "^11.3.2",
"react-easy-emoji": "1.4.0",
"react-helmet": "^6.1.0",
Expand Down
4 changes: 2 additions & 2 deletions src/components/Dropdown/Dropdown.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@ const DropdownComponent = props => {
}
value={aItem}
style={{
"font-family": `${aItem}`,
fontFamily : `${aItem}`,
color: `${aItem}`,
"font-weight": `${aItem}`,
fontWeight: `${aItem}`,
}}
key={index}
>
Expand Down
6 changes: 3 additions & 3 deletions src/pages/Editor/sections/OutputComponent/Output.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { EditContext } from "../../containers/editContext";
const OutputComponent = ({ pageNo, show }) => {
const editContext = useContext(EditContext);
const page = require(`./${editContext.pageSrc}`);
console.log(`${editContext.pageSrc}`);
// console.log(`${editContext.pageSrc}`);

const [pageText, setPageText] = useState("");
const [wordCount, setWordCount] = useState(0);
Expand All @@ -29,8 +29,8 @@ const OutputComponent = ({ pageNo, show }) => {
src={page.default}
alt="editor"
className="mx-auto px-0"
Width="100%"
Height="100%"
width="100%"
height="100%"
/>
</div>
<textarea
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,11 @@ function ExperienceForm() {
<br />
<div className={styles.contact_form}>
<form
onSubmit="setTimeout(function(){window.location.reload();},10);"
onSubmit={() =>
setTimeout(function () {
window.location.reload();
}, 10)
}
className={styles.contact_form_container}
>
<div className={styles.circle}>
Expand Down
4 changes: 2 additions & 2 deletions src/pages/Sketch/components/IconLibrary/IconsLibrary.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ function IconPreview(props) {
const { iconPackSVGs, categoryTitle } = props;
const allSVGsRef = useRef([]);

allSVGsRef.current = Object.keys(iconPackSVGs).map(imgName => {
allSVGsRef.current = Object.keys(iconPackSVGs).map((imgName, index) => {
return (
<label key={"id"} htmlFor={`icon-${imgName}`} title={imgName}>
<label key={"id" + index} htmlFor={`icon-${imgName}`} title={imgName}>
<img
id={`icon-${imgName}`}
className={style.svgIcon}
Expand Down
4 changes: 2 additions & 2 deletions src/pages/Sketch/components/Toolbox/Toolbox.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ function TabPanel(props) {
aria-labelledby={`vertical-tab-${index}`}
{...other}
>
{value === index && <Typography>{children}</Typography>}
{value === index && <Typography component="div">{children}</Typography>}
</div>
);
}
Expand Down Expand Up @@ -238,7 +238,7 @@ function VerticalTabs(props) {
/>
</Tabs>
<TabPanel value={value} index={0}>
<List>
<List component="div">
<ListItem button onClick={clear}>
<ListItemIcon>
<Delete />
Expand Down
151 changes: 71 additions & 80 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3142,15 +3142,15 @@
"pako" "~1.0.5"

"browserslist@^4.0.0", "browserslist@^4.12.0", "browserslist@^4.14.5", "browserslist@^4.16.3", "browserslist@^4.6.2", "browserslist@^4.6.4":
"integrity" "sha512-vIyhWmIkULaq04Gt93txdh+j02yX/JzlyhLYbV3YQCn/zvES3JnY7TifHHvvr1w5hTDluNKMkV05cs4vy8Q7sw=="
"resolved" "https://registry.npmjs.org/browserslist/-/browserslist-4.16.3.tgz"
"version" "4.16.3"
"integrity" "sha512-Wspk/PqO+4W9qp5iUTJsa1B/QrYn1keNCcEP5OvP7WBwT4KaDly0uONYmC6Xa3Z5IqnUgS0KcgLYu1l74x0ZXQ=="
"resolved" "https://registry.npmjs.org/browserslist/-/browserslist-4.16.6.tgz"
"version" "4.16.6"
dependencies:
"caniuse-lite" "^1.0.30001181"
"colorette" "^1.2.1"
"electron-to-chromium" "^1.3.649"
"caniuse-lite" "^1.0.30001219"
"colorette" "^1.2.2"
"electron-to-chromium" "^1.3.723"
"escalade" "^3.1.1"
"node-releases" "^1.1.70"
"node-releases" "^1.1.71"

"[email protected]":
"integrity" "sha512-HI4lPveGKUR0x2StIz+2FXfDk9SfVMrxn6PLh1JeGUwcuoDkdKZebWiyLRJ68iIPDpMI4JLVDf7S7XzslgWOhw=="
Expand Down Expand Up @@ -3352,10 +3352,10 @@
"lodash.memoize" "^4.1.2"
"lodash.uniq" "^4.5.0"

"caniuse-lite@^1.0.0", "caniuse-lite@^1.0.30000981", "caniuse-lite@^1.0.30001109", "caniuse-lite@^1.0.30001125", "caniuse-lite@^1.0.30001181":
"integrity" "sha512-ic/jXfa6tgiPBAISWk16jRI2q8YfjxHnSG7ddSL1ptrIP8Uy11SayFrjXRAk3NumHpDb21fdTkbTxb/hOrFrnQ=="
"resolved" "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001200.tgz"
"version" "1.0.30001200"
"caniuse-lite@^1.0.0", "caniuse-lite@^1.0.30000981", "caniuse-lite@^1.0.30001109", "caniuse-lite@^1.0.30001125", "caniuse-lite@^1.0.30001219":
"integrity" "sha512-5yBd5nWCBS+jWKTcHOzXwo5xzcj4ePE/yjtkZyUV1BTUmrBaA9MRGC+e7mxnqXSA90CmCA8L3eKLaSUkt099IQ=="
"resolved" "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001230.tgz"
"version" "1.0.30001230"

"canvg@^3.0.6":
"integrity" "sha512-4sq6iL5Q4VOXS3PL1BapiXIZItpxYyANVzsAKpTPS5oq4u3SKbGfUcbZh2gdLCQ3jWpG/y5wRkMlBBAJhXeiZA=="
Expand Down Expand Up @@ -4126,10 +4126,10 @@
"resolved" "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz"
"version" "3.0.0"

"cssnano-preset-default@^4.0.7":
"integrity" "sha512-x0YHHx2h6p0fCl1zY9L9roD7rnlltugGu7zXSKQx6k2rYw0Hi3IqxcoAGF7u9Q5w1nt7vK0ulxV8Lo+EvllGsA=="
"resolved" "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-4.0.7.tgz"
"version" "4.0.7"
"cssnano-preset-default@^4.0.8":
"integrity" "sha512-LdAyHuq+VRyeVREFmuxUZR1TXjQm8QQU/ktoo/x7bz+SdOge1YKc5eMN6pRW7YWBmyq59CqYba1dJ5cUukEjLQ=="
"resolved" "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-4.0.8.tgz"
"version" "4.0.8"
dependencies:
"css-declaration-sorter" "^4.0.1"
"cssnano-util-raw-cache" "^4.0.1"
Expand Down Expand Up @@ -4159,7 +4159,7 @@
"postcss-ordered-values" "^4.1.2"
"postcss-reduce-initial" "^4.0.3"
"postcss-reduce-transforms" "^4.0.2"
"postcss-svgo" "^4.0.2"
"postcss-svgo" "^4.0.3"
"postcss-unique-selectors" "^4.0.1"

"cssnano-util-get-arguments@^4.0.0":
Expand All @@ -4185,12 +4185,12 @@
"version" "4.0.1"

"cssnano@^4.1.10":
"integrity" "sha512-5wny+F6H4/8RgNlaqab4ktc3e0/blKutmq8yNlBFXA//nSFFAqAngjNVRzUvCgYROULmZZUoosL/KSoZo5aUaQ=="
"resolved" "https://registry.npmjs.org/cssnano/-/cssnano-4.1.10.tgz"
"version" "4.1.10"
"integrity" "sha512-6gZm2htn7xIPJOHY824ERgj8cNPgPxyCSnkXc4v7YvNW+TdVfzgngHcEhy/8D11kUWRUMbke+tC+AUcUsnMz2g=="
"resolved" "https://registry.npmjs.org/cssnano/-/cssnano-4.1.11.tgz"
"version" "4.1.11"
dependencies:
"cosmiconfig" "^5.0.0"
"cssnano-preset-default" "^4.0.7"
"cssnano-preset-default" "^4.0.8"
"is-resolvable" "^1.0.0"
"postcss" "^7.0.0"

Expand Down Expand Up @@ -4478,9 +4478,9 @@
"version" "1.0.0"

"dns-packet@^1.3.1":
"integrity" "sha512-0UxfQkMhYAUaZI+xrNZOz/as5KgDU0M/fQ9b6SpkyLbk3GEswDi6PADJVaYJradtRVsRIlF1zLyOodbcTCDzUg=="
"resolved" "https://registry.npmjs.org/dns-packet/-/dns-packet-1.3.1.tgz"
"version" "1.3.1"
"integrity" "sha512-BQ6F4vycLXBvdrJZ6S3gZewt6rcrks9KBgM9vrhW+knGRqc8uEdT7fuCwloc7nny5xNoMJ17HGH0R/6fpo8ECA=="
"resolved" "https://registry.npmjs.org/dns-packet/-/dns-packet-1.3.4.tgz"
"version" "1.3.4"
dependencies:
"ip" "^1.1.0"
"safe-buffer" "^5.0.1"
Expand Down Expand Up @@ -4654,10 +4654,10 @@
"resolved" "https://registry.npmjs.org/ejs/-/ejs-2.7.4.tgz"
"version" "2.7.4"

"electron-to-chromium@^1.3.564", "electron-to-chromium@^1.3.649":
"integrity" "sha512-IpzksdQNl3wdgkzf7dnA7/v10w0Utf1dF2L+B4+gKrloBrxCut+au+kky3PYvle3RMdSxZP+UiCZtLbcYRxSNQ=="
"resolved" "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.687.tgz"
"version" "1.3.687"
"electron-to-chromium@^1.3.564", "electron-to-chromium@^1.3.723":
"integrity" "sha512-ihL14knI9FikJmH2XUIDdZFWJxvr14rPSdOhJ7PpS27xbz8qmaRwCwyg/bmFwjWKmWK9QyamiCZVCvXm5CH//Q=="
"resolved" "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.742.tgz"
"version" "1.3.742"

"elliptic@^6.5.3":
"integrity" "sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ=="
Expand Down Expand Up @@ -6002,9 +6002,9 @@
"version" "0.1.4"

"hosted-git-info@^2.1.4":
"integrity" "sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg=="
"resolved" "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.8.tgz"
"version" "2.8.8"
"integrity" "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw=="
"resolved" "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz"
"version" "2.8.9"

"hpack.js@^2.1.6":
"integrity" "sha1-h3dMCUnlE/QuhFdbPEVoH63ioLI="
Expand All @@ -6026,11 +6026,6 @@
"resolved" "https://registry.npmjs.org/hsla-regex/-/hsla-regex-1.0.0.tgz"
"version" "1.0.0"

"html-comment-regex@^1.1.0":
"integrity" "sha512-P+M65QY2JQ5Y0G9KKdlDpo0zK+/OHptU5AaBwUfAIDJZk1MYf32Frm84EcOytfJE0t5JvkAnKlmjsXDnWzCJmQ=="
"resolved" "https://registry.npmjs.org/html-comment-regex/-/html-comment-regex-1.1.2.tgz"
"version" "1.1.2"

"html-encoding-sniffer@^2.0.1":
"integrity" "sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ=="
"resolved" "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz"
Expand Down Expand Up @@ -6684,13 +6679,6 @@
"resolved" "https://registry.npmjs.org/is-string/-/is-string-1.0.5.tgz"
"version" "1.0.5"

"is-svg@^3.0.0":
"integrity" "sha512-gi4iHK53LR2ujhLVVj+37Ykh9GLqYHX6JOVXbLAucaG/Cqw9xwdFOjDM2qeifLs1sF1npXXFvDu0r5HNgCMrzQ=="
"resolved" "https://registry.npmjs.org/is-svg/-/is-svg-3.0.0.tgz"
"version" "3.0.0"
dependencies:
"html-comment-regex" "^1.1.0"

"is-symbol@^1.0.2", "is-symbol@^1.0.3":
"integrity" "sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ=="
"resolved" "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.3.tgz"
Expand Down Expand Up @@ -8161,10 +8149,10 @@
"resolved" "https://registry.npmjs.org/nan/-/nan-2.14.2.tgz"
"version" "2.14.2"

"nanoid@^3.1.20":
"integrity" "sha512-/2ZUaJX2ANuLtTvqTlgqBQNJoQO398KyJgZloL0PZkC0dpysjncRUPsFe3DUPzz/y3h+u7C46np8RMuvF3jsSQ=="
"resolved" "https://registry.npmjs.org/nanoid/-/nanoid-3.1.22.tgz"
"version" "3.1.22"
"nanoid@^3.1.23":
"integrity" "sha512-FiB0kzdP0FFVGDKlRLEQ1BgDzU87dy5NnzjeW9YZNt+/c3+q82EQDUwniSAUxp/F0gFNI1ZhKU1FqYsMuqZVnw=="
"resolved" "https://registry.npmjs.org/nanoid/-/nanoid-3.1.23.tgz"
"version" "3.1.23"

"nanomatch@^1.2.9":
"integrity" "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA=="
Expand Down Expand Up @@ -8284,7 +8272,7 @@
"resolved" "https://registry.npmjs.org/node-releases/-/node-releases-1.1.67.tgz"
"version" "1.1.67"

"node-releases@^1.1.70":
"node-releases@^1.1.71":
"integrity" "sha512-zR6HoT6LrLCRBwukmrVbHv0EpEQjksO6GmFcZQQuCAy139BEsoVKPYnf3jongYW83fAa1torLGYwxxky/p28sg=="
"resolved" "https://registry.npmjs.org/node-releases/-/node-releases-1.1.71.tgz"
"version" "1.1.71"
Expand Down Expand Up @@ -9128,11 +9116,10 @@
"postcss-values-parser" "^2.0.0"

"postcss-initial@^3.0.0":
"integrity" "sha512-ugA2wKonC0xeNHgirR4D3VWHs2JcU08WAi1KFLVcnb7IN89phID6Qtg2RIctWbnvp1TM2BOmDtX8GGLCKdR8YA=="
"resolved" "https://registry.npmjs.org/postcss-initial/-/postcss-initial-3.0.2.tgz"
"version" "3.0.2"
"integrity" "sha512-3RLn6DIpMsK1l5UUy9jxQvoDeUN4gP939tDcKUHD/kM8SGSKbFAnvkpFpj3Bhtz3HGk1jWY5ZNWX6mPta5M9fg=="
"resolved" "https://registry.npmjs.org/postcss-initial/-/postcss-initial-3.0.4.tgz"
"version" "3.0.4"
dependencies:
"lodash.template" "^4.5.0"
"postcss" "^7.0.2"

"postcss-lab-function@^2.0.1":
Expand Down Expand Up @@ -9539,12 +9526,11 @@
"uniq" "^1.0.1"
"util-deprecate" "^1.0.2"

"postcss-svgo@^4.0.2":
"integrity" "sha512-C6wyjo3VwFm0QgBy+Fu7gCYOkCmgmClghO+pjcxvrcBKtiKt0uCF+hvbMO1fyv5BMImRK90SMb+dwUnfbGd+jw=="
"resolved" "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-4.0.2.tgz"
"version" "4.0.2"
"postcss-svgo@^4.0.3":
"integrity" "sha512-NoRbrcMWTtUghzuKSoIm6XV+sJdvZ7GZSc3wdBN0W19FTtp2ko8NqLsgoh/m9CzNhU3KLPvQmjIwtaNFkaFTvw=="
"resolved" "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-4.0.3.tgz"
"version" "4.0.3"
dependencies:
"is-svg" "^3.0.0"
"postcss" "^7.0.0"
"postcss-value-parser" "^3.0.0"
"svgo" "^1.0.0"
Expand Down Expand Up @@ -9592,13 +9578,13 @@
"supports-color" "^6.1.0"

"postcss@^8.1.0":
"integrity" "sha512-1F0Xb2T21xET7oQV9eKuctbM9S7BC0fetoHCc4H13z0PT6haiRLP4T0ZY4XWh7iLP0usgqykT6p9B2RtOf4FPw=="
"resolved" "https://registry.npmjs.org/postcss/-/postcss-8.2.8.tgz"
"version" "8.2.8"
"integrity" "sha512-+ogXpdAjWGa+fdYY5BQ96V/6tAo+TdSSIMP5huJBIygdWwKtVoB5JWZ7yUd4xZ8r+8Kvvx4nyg/PQ071H4UtcQ=="
"resolved" "https://registry.npmjs.org/postcss/-/postcss-8.3.0.tgz"
"version" "8.3.0"
dependencies:
"colorette" "^1.2.2"
"nanoid" "^3.1.20"
"source-map" "^0.6.1"
"nanoid" "^3.1.23"
"source-map-js" "^0.6.2"

"[email protected]":
"integrity" "sha512-uIFtJElxJo29QC753JzhidoAhvp/e/Exezkdhfmt8AymWT6/5B7W1WmponYWkHk2eg6sONyTch0A3nkMPun3SQ=="
Expand Down Expand Up @@ -9920,14 +9906,14 @@
"strip-ansi" "6.0.0"
"text-table" "0.2.0"

"react-dom@^17.0.1":
"integrity" "sha512-6eV150oJZ9U2t9svnsspTMrWNyHc6chX0KzDeAOXftRa8bNeOKTTfCJ7KorIwenkHd2xqVTBTCZd79yk/lx/Ug=="
"resolved" "https://registry.npmjs.org/react-dom/-/react-dom-17.0.1.tgz"
"version" "17.0.1"
"react-dom@^17.0.2":
"integrity" "sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA=="
"resolved" "https://registry.npmjs.org/react-dom/-/react-dom-17.0.2.tgz"
"version" "17.0.2"
dependencies:
"loose-envify" "^1.1.0"
"object-assign" "^4.1.1"
"scheduler" "^0.20.1"
"scheduler" "^0.20.2"

"react-dropzone@^11.3.2":
"integrity" "sha512-Z0l/YHcrNK1r85o6RT77Z5XgTARmlZZGfEKBl3tqTXL9fZNQDuIdRx/J0QjvR60X+yYu26dnHeaG2pWU+1HHvw=="
Expand Down Expand Up @@ -10180,10 +10166,10 @@
dependencies:
"lottie-web" "^5.5.7"

"react@^17.0.1":
"integrity" "sha512-lG9c9UuMHdcAexXtigOZLX8exLWkW0Ku29qPRU8uhF2R9BN96dLCt0psvzPLlHc5OWkgymP3qwTRgbnw5BKx3w=="
"resolved" "https://registry.npmjs.org/react/-/react-17.0.1.tgz"
"version" "17.0.1"
"react@^17.0.2", "[email protected]":
"integrity" "sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA=="
"resolved" "https://registry.npmjs.org/react/-/react-17.0.2.tgz"
"version" "17.0.2"
dependencies:
"loose-envify" "^1.1.0"
"object-assign" "^4.1.1"
Expand Down Expand Up @@ -10599,9 +10585,9 @@
"version" "3.0.0"

"resolve-url-loader@^3.1.2":
"integrity" "sha512-QEb4A76c8Mi7I3xNKXlRKQSlLBwjUV/ULFMP+G7n3/7tJZ8MG5wsZ3ucxP1Jz8Vevn6fnJsxDx9cIls+utGzPQ=="
"resolved" "https://registry.npmjs.org/resolve-url-loader/-/resolve-url-loader-3.1.2.tgz"
"version" "3.1.2"
"integrity" "sha512-WbDSNFiKPPLem1ln+EVTE+bFUBdTTytfQZWbmghroaFNFaAVmGq0Saqw6F/306CwgPXsGwXVxbODE+3xAo/YbA=="
"resolved" "https://registry.npmjs.org/resolve-url-loader/-/resolve-url-loader-3.1.3.tgz"
"version" "3.1.3"
dependencies:
"adjust-sourcemap-loader" "3.0.0"
"camelcase" "5.3.1"
Expand Down Expand Up @@ -10847,10 +10833,10 @@
dependencies:
"xmlchars" "^2.2.0"

"scheduler@^0.20.1":
"integrity" "sha512-LKTe+2xNJBNxu/QhHvDR14wUXHRQbVY5ZOYpOGWRzhydZUqrLb2JBvLPY7cAqFmqrWuDED0Mjk7013SZiOz6Bw=="
"resolved" "https://registry.npmjs.org/scheduler/-/scheduler-0.20.1.tgz"
"version" "0.20.1"
"scheduler@^0.20.2":
"integrity" "sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ=="
"resolved" "https://registry.npmjs.org/scheduler/-/scheduler-0.20.2.tgz"
"version" "0.20.2"
dependencies:
"loose-envify" "^1.1.0"
"object-assign" "^4.1.1"
Expand Down Expand Up @@ -11192,6 +11178,11 @@
"resolved" "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz"
"version" "2.0.1"

"source-map-js@^0.6.2":
"integrity" "sha512-/3GptzWzu0+0MBQFrDKzw/DvvMTUORvgY6k6jd/VS6iCR4RDTKWH6v6WPwQoUO8667uQEf9Oe38DxAYWY5F/Ug=="
"resolved" "https://registry.npmjs.org/source-map-js/-/source-map-js-0.6.2.tgz"
"version" "0.6.2"

"source-map-resolve@^0.5.0":
"integrity" "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw=="
"resolved" "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz"
Expand Down Expand Up @@ -11342,9 +11333,9 @@
"tweetnacl" "~0.14.0"

"ssri@^6.0.1":
"integrity" "sha512-3Wge10hNcT1Kur4PDFwEieXSCMCJs/7WvSACcrMYrNp+b8kDL1/0wJch5Ni2WrtwEa2IO8OsVfeKIciKCDx/QA=="
"resolved" "https://registry.npmjs.org/ssri/-/ssri-6.0.1.tgz"
"version" "6.0.1"
"integrity" "sha512-cepbSq/neFK7xB6A50KHN0xHDotYzq58wWCa5LeWqnPrHG8GzfEjO/4O8kpmcGW+oaxkvhEJCWgbgNk4/ZV93Q=="
"resolved" "https://registry.npmjs.org/ssri/-/ssri-6.0.2.tgz"
"version" "6.0.2"
dependencies:
"figgy-pudding" "^3.5.1"

Expand Down

0 comments on commit d09d8d8

Please sign in to comment.