Skip to content

Commit a5371ec

Browse files
committed
chore(dev-deps): bump all dev dependencies to latest
1 parent a35b09a commit a5371ec

File tree

4 files changed

+578
-671
lines changed

4 files changed

+578
-671
lines changed

components/Playground.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { PlaygroundView } from "./PlaygroundView";
77
import { PlaygroundProvider } from "./usePlayground";
88
import { UploadProvider } from "./useUpload";
99

10-
const tabs = ["Editor", "Preview"];
10+
const tabs = ["Editor", "Preview"] as const;
1111

1212
export default function Playground(): ReactElement {
1313
return (

package.json

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -43,51 +43,51 @@
4343
"marked": "^4.0.10"
4444
},
4545
"devDependencies": {
46-
"@babel/core": "^7.16.7",
47-
"@babel/plugin-transform-runtime": "^7.16.8",
48-
"@babel/preset-env": "^7.16.8",
46+
"@babel/core": "^7.16.12",
47+
"@babel/plugin-transform-runtime": "^7.16.10",
48+
"@babel/preset-env": "^7.16.11",
4949
"@babel/preset-react": "^7.16.7",
5050
"@babel/preset-typescript": "^7.16.7",
5151
"@mlaursen/eslint-config": "^1.4.0",
52-
"@next/eslint-plugin-next": "^12.0.8",
52+
"@next/eslint-plugin-next": "^12.0.9",
5353
"@octokit/core": "^3.5.1",
5454
"@rollup/plugin-babel": "^5.3.0",
5555
"@rollup/plugin-commonjs": "^21.0.1",
5656
"@rollup/plugin-node-resolve": "^13.1.3",
5757
"@rollup/plugin-replace": "^3.0.1",
5858
"@testing-library/jest-dom": "^5.16.1",
5959
"@testing-library/react": "^12.1.2",
60-
"@types/inquirer": "^8.1.3",
60+
"@types/inquirer": "^8.2.0",
6161
"@types/jest": "^27.4.0",
62-
"@types/node": "^17.0.10",
63-
"@types/prismjs": "^1.16.6",
62+
"@types/node": "^17.0.13",
63+
"@types/prismjs": "^1.26.0",
6464
"@types/react": "^17.0.38",
6565
"@types/react-dom": "^17.0.11",
66-
"dotenv": "^14.2.0",
67-
"eslint": "^8.7.0",
68-
"filesize": "^8.0.6",
66+
"dotenv": "^15.0.0",
67+
"eslint": "^8.8.0",
68+
"filesize": "^8.0.7",
6969
"husky": "^7.0.4",
7070
"identity-obj-proxy": "^3.0.0",
7171
"inquirer": "^8.2.0",
7272
"jest": "^27.4.7",
7373
"jest-watch-typeahead": "^1.0.0",
74-
"lint-staged": "^12.2.0",
75-
"next": "^12.0.8",
74+
"lint-staged": "^12.3.2",
75+
"next": "^12.0.9",
7676
"npm-run-all": "^4.1.5",
7777
"prettier": "^2.5.1",
7878
"prismjs": "^1.26.0",
7979
"react": "^17.0.2",
8080
"react-dom": "^17.0.2",
81-
"react-md": "^4.0.3",
81+
"react-md": "^5.0.0",
8282
"rimraf": "^3.0.2",
83-
"rollup": "^2.64.0",
83+
"rollup": "^2.66.1",
8484
"rollup-plugin-terser": "^7.0.2",
8585
"sass": "^1.49.0",
8686
"standard-version": "^9.3.2",
8787
"ts-jest": "^27.1.3",
8888
"ts-node": "^10.4.0",
8989
"typedoc": "^0.22.11",
90-
"typescript": "^4.5.4"
90+
"typescript": "^4.5.5"
9191
},
9292
"peerDependencies": {
9393
"react": ">= 16.14"

pages/_app.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ import {
88
ArrowUpwardSVGIcon,
99
CheckBoxSVGIcon,
1010
CheckSVGIcon,
11-
ConfigurableIcons,
1211
Configuration,
12+
ConfiguredIcons,
1313
ErrorOutlineSVGIcon,
14-
FileDownloadSVGIcon,
14+
FileUploadSVGIcon,
1515
KeyboardArrowDownSVGIcon,
1616
KeyboardArrowLeftSVGIcon,
1717
KeyboardArrowRightSVGIcon,
@@ -21,10 +21,9 @@ import {
2121
RemoveRedEyeSVGIcon,
2222
} from "react-md";
2323

24-
const icons: ConfigurableIcons = {
24+
const icons: ConfiguredIcons = {
2525
back: <KeyboardArrowLeftSVGIcon />,
2626
checkbox: <CheckBoxSVGIcon />,
27-
download: <FileDownloadSVGIcon />,
2827
dropdown: <ArrowDropDownSVGIcon />,
2928
error: <ErrorOutlineSVGIcon />,
3029
expander: <KeyboardArrowDownSVGIcon />,
@@ -35,6 +34,7 @@ const icons: ConfigurableIcons = {
3534
radio: <RadioButtonCheckedSVGIcon />,
3635
selected: <CheckSVGIcon />,
3736
sort: <ArrowUpwardSVGIcon />,
37+
upload: <FileUploadSVGIcon />,
3838
};
3939

4040
const DESCRIPTION =

0 commit comments

Comments
 (0)