Skip to content

Commit 949d7d4

Browse files
committed
v0.8.7
1 parent 1996341 commit 949d7d4

File tree

3 files changed

+30
-7
lines changed

3 files changed

+30
-7
lines changed

.github/workflows/ci.yaml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
2+
name: ci
3+
on: push
4+
jobs:
5+
ci:
6+
runs-on: ubuntu-latest
7+
steps:
8+
- name: checkout
9+
uses: actions/checkout@v4
10+
- name: Set up Node.js
11+
uses: actions/setup-node@v4
12+
with:
13+
node-version: "18"
14+
cache: "yarn"
15+
- name: Install project dependencies
16+
run: yarn install
17+
- name: Build
18+
run: yarn build
19+
- name: Lint
20+
run: yarn lint
21+
- name: Test
22+
run: yarn test
23+

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@lekko/react-sdk",
3-
"version": "0.8.7-beta.4",
3+
"version": "0.8.7",
44
"main": "dist/index.cjs",
55
"module": "dist/index.mjs",
66
"types": "dist/index.d.ts",
@@ -12,7 +12,7 @@
1212
"prepack": "rm -f *.tgz || true"
1313
},
1414
"dependencies": {
15-
"@lekko/js-sdk": "beta",
15+
"@lekko/js-sdk": "^0.1.7",
1616
"@tanstack/react-query": "^5.8.1",
1717
"dotenv": "^16.3.1",
1818
"lz-string": "^1.5.0",

yarn.lock

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -833,9 +833,9 @@ __metadata:
833833
languageName: node
834834
linkType: hard
835835

836-
"@lekko/js-sdk@npm:beta":
837-
version: 0.1.7-beta.2
838-
resolution: "@lekko/js-sdk@npm:0.1.7-beta.2"
836+
"@lekko/js-sdk@npm:^0.1.7":
837+
version: 0.1.7
838+
resolution: "@lekko/js-sdk@npm:0.1.7"
839839
dependencies:
840840
"@bufbuild/protobuf": ^1.7.2
841841
"@connectrpc/connect": ^1.3.0
@@ -845,7 +845,7 @@ __metadata:
845845
lodash.snakecase: ^4.1.1
846846
tslib: ^2.6.2
847847
xxhashjs: ^0.2.2
848-
checksum: 2ccfbd4d4459d6cdb550ec7be5b8262a238a33086aed8b91ef7c9ec3a03cc0af5b4e7c7249aa9a65b04ad759c9fce034ce067056e03ddb2bdd38612f92f1099c
848+
checksum: a96790d935fc72fffa32abc95064a8d0577312e174756c621baf36c7e03ceaa5f7a5953c199912e2a00f2ba0eb6dcce310b888d5c5b53d6b1636030969c23b56
849849
languageName: node
850850
linkType: hard
851851

@@ -854,7 +854,7 @@ __metadata:
854854
resolution: "@lekko/react-sdk@workspace:."
855855
dependencies:
856856
"@babel/core": ^7.23.9
857-
"@lekko/js-sdk": beta
857+
"@lekko/js-sdk": ^0.1.7
858858
"@rollup/plugin-commonjs": ^25.0.7
859859
"@rollup/plugin-node-resolve": ^15.2.3
860860
"@rollup/plugin-terser": ^0.4.4

0 commit comments

Comments
 (0)