Skip to content

Commit 11a44dd

Browse files
authored
Merge pull request #18 from sontuphan/feat/support-immer
Feat/support immer
2 parents a3a7dcb + 3d7ad7d commit 11a44dd

13 files changed

Lines changed: 1891 additions & 1222 deletions

.github/workflows/build.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: build
2+
3+
on:
4+
push:
5+
branches: [main, develop]
6+
pull_request:
7+
branches: [main, develop]
8+
9+
env:
10+
NODE_VERSION: '22.19.0'
11+
12+
jobs:
13+
build:
14+
runs-on: ubuntu-latest
15+
16+
steps:
17+
- uses: actions/checkout@v3
18+
- name: Set up Node ${{env.NODE_VERSION}}
19+
uses: actions/setup-node@v4
20+
with:
21+
node-version: ${{env.NODE_VERSION}}
22+
cache: 'npm'
23+
registry-url: 'https://registry.npmjs.org'
24+
25+
- name: Install dependencies
26+
run: npm ci
27+
env:
28+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
29+
30+
# - name: Lint code with standard
31+
# run: npm run lint
32+
33+
- name: Run tests
34+
run: npm test

package-lock.json

Lines changed: 664 additions & 345 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,11 @@
4848
"author": "Tetherto",
4949
"license": "Apache-2.0",
5050
"dependencies": {
51-
"@tetherto/wdk-react-native-secure-storage": "github:tetherto/wdk-react-native-secure-storage",
5251
"@tanstack/react-query": "^5.0.0",
53-
"expo-crypto": "^15.0.8",
5452
"@tetherto/pear-wrk-wdk": "github:tetherto/pear-wrk-wdk#v2",
53+
"@tetherto/wdk-react-native-secure-storage": "github:tetherto/wdk-react-native-secure-storage",
54+
"expo-crypto": "^15.0.8",
55+
"immer": "^11.1.3",
5556
"react-native-bare-kit": "^0.11.0",
5657
"react-native-mmkv": "^4.1.0",
5758
"zod": "^3.22.0",
@@ -63,7 +64,6 @@
6364
"@types/jest": "^29.5.0",
6465
"@types/react": "^19.0.0",
6566
"@types/react-native": "^0.73.0",
66-
"bufferutil": "^4.1.0",
6767
"jest": "^29.7.0",
6868
"jest-environment-node": "^29.7.0",
6969
"ts-jest": "^29.1.0",

0 commit comments

Comments
 (0)