Skip to content

Commit dd8f628

Browse files
authored
feat: support for rescript v11 (#29)
* chore: setup development environment * chore(dev-deps): bump rescript to version 11 * chore(dev-deps): using rescript-vitest * chore: update rescript configuration * chore(deps): bump version @rescript/react * chore(dev-deps): add vitest and removed unused * refactor: replace string and test implementation * ci: bump node version to 20 * chore(dev-deps): add @vitest/coverage-v8
1 parent 6a460f9 commit dd8f628

Some content is hidden

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

70 files changed

+14278
-16256
lines changed

.envrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
use flake . --impure

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Setup node
1919
uses: actions/setup-node@v2
2020
with:
21-
node-version: 12
21+
node-version: 20
2222
- id: vars
2323
name: Find Yarn's cache folder
2424
run: |

.github/workflows/test.release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- name: Setup node
1212
uses: actions/setup-node@v2
1313
with:
14-
node-version: 12
14+
node-version: 20
1515
- id: vars
1616
name: Find Yarn's cache folder
1717
run: |

.gitignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167,3 +167,12 @@ temp/
167167

168168
.vercel
169169
src/**/*.js
170+
# Devenv
171+
.devenv*
172+
devenv.local.nix
173+
174+
# direnv
175+
.direnv
176+
177+
# pre-commit
178+
.pre-commit-config.yaml

.husky/pre-commit

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44

55
yarn run lint-staged
66
yarn run build
7-
yarn run test
7+
yarn run test -- --coverage

0 commit comments

Comments
 (0)