Skip to content

Commit f233b36

Browse files
authored
React components in TypeScript (#186)
* convert react components to typescript
1 parent 53944af commit f233b36

Some content is hidden

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

80 files changed

+12719
-24047
lines changed

.github/workflows/ci.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313
steps:
1414
- name: Checkout code
1515
uses: actions/checkout@v2
16-
- name: Setup Node.js 12.x
16+
- name: Setup Node.js 16.x
1717
uses: actions/[email protected]
1818
with:
19-
node-version: 12.x
19+
node-version: 16.x
2020
- name: Install dependencies
2121
run: npm ci
2222
- name: Build PCUI
@@ -28,10 +28,10 @@ jobs:
2828
steps:
2929
- name: Checkout code
3030
uses: actions/checkout@v2
31-
- name: Setup Node.js 12.x
31+
- name: Setup Node.js 16.x
3232
uses: actions/[email protected]
3333
with:
34-
node-version: 12.x
34+
node-version: 16.x
3535
- name: Install dependencies
3636
run: npm ci
3737
- name: Run ESLint

.gitignore

+3-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,9 @@
1111
# production
1212
/build
1313
/dist
14-
/react/dist/pcui-react.js
15-
/react/dist/pcui-react.mjs
14+
/unstyled/dist/
15+
/react/dist/
16+
/react/types/
1617
/react/unstyled/dist
1718
/.storybook/utils/jsdoc-ast.json
1819

0 commit comments

Comments
 (0)