Skip to content

Commit 56f8ae6

Browse files
committedAug 29, 2021
feat(website): convert a few control components to TypeScript
1 parent 39ff492 commit 56f8ae6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+550
-766
lines changed
 

‎Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ fmt: ##@0 global format code using prettier (js, css, md)
5757
"packages/*/{src,stories,tests}/**/*.{js,ts,tsx}" \
5858
"packages/*/index.d.ts" \
5959
"packages/*/README.md" \
60-
"website/src/**/*.{js,css}" \
60+
"website/src/**/*.{js,ts,tsx,css}" \
6161
"api/**/*.{js,ts,tsx}" \
6262
"README.md"
6363

@@ -67,7 +67,7 @@ fmt-check: ##@0 global check if files were all formatted using prettier
6767
"packages/*/{src,stories,tests}/**/*.{js,ts,tsx}" \
6868
"packages/*/index.d.ts" \
6969
"packages/*/README.md" \
70-
"website/src/**/*.{js,css}" \
70+
"website/src/**/*.{js,ts,tsx,css}" \
7171
"api/**/*.{js,ts,tsx}" \
7272
"README.md"
7373

‎website/src/components/CollapsibleCard.js

-70
This file was deleted.

0 commit comments

Comments
 (0)
Please sign in to comment.