Skip to content

Commit d0ff9d3

Browse files
authoredJun 2, 2020
Convert to TypeScript (TroyAlford#135)
Fixes TroyAlford#135 * Convert all .js to .ts - and update build * Bump version number * Update Node version for builds on CircleCI * Update test coverage & test coverage reporting
1 parent 947f4db commit d0ff9d3

Some content is hidden

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

52 files changed

+2350
-1105
lines changed
 

‎.babelrc

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
],
55
"presets": [
66
"@babel/preset-env",
7-
"@babel/preset-react"
7+
"@babel/preset-react",
8+
"@babel/preset-typescript"
89
],
910
"highlightCode": true
1011
}

‎.circleci/config.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ jobs:
33
build:
44
working_directory: ~/react-jsx-parser
55
docker:
6-
- image: circleci/node:11.10.1
6+
- image: circleci/node:12.9.1
77
steps:
88
- checkout
99
- restore_cache:
@@ -17,7 +17,7 @@ jobs:
1717
test:
1818
working_directory: ~/react-jsx-parser
1919
docker:
20-
- image: circleci/node:11.10.1
20+
- image: circleci/node:12.9.1
2121
steps:
2222
- checkout
2323
- restore_cache:

0 commit comments

Comments
 (0)
Please sign in to comment.