File tree Expand file tree Collapse file tree 3 files changed +30
-7
lines changed Expand file tree Collapse file tree 3 files changed +30
-7
lines changed Original file line number Diff line number Diff line change
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
+
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @lekko/react-sdk" ,
3
- "version" : " 0.8.7-beta.4 " ,
3
+ "version" : " 0.8.7" ,
4
4
"main" : " dist/index.cjs" ,
5
5
"module" : " dist/index.mjs" ,
6
6
"types" : " dist/index.d.ts" ,
12
12
"prepack" : " rm -f *.tgz || true"
13
13
},
14
14
"dependencies" : {
15
- "@lekko/js-sdk" : " beta " ,
15
+ "@lekko/js-sdk" : " ^0.1.7 " ,
16
16
"@tanstack/react-query" : " ^5.8.1" ,
17
17
"dotenv" : " ^16.3.1" ,
18
18
"lz-string" : " ^1.5.0" ,
Original file line number Diff line number Diff line change @@ -833,9 +833,9 @@ __metadata:
833
833
languageName : node
834
834
linkType : hard
835
835
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"
839
839
dependencies :
840
840
" @bufbuild/protobuf " : ^1.7.2
841
841
" @connectrpc/connect " : ^1.3.0
@@ -845,7 +845,7 @@ __metadata:
845
845
lodash.snakecase : ^4.1.1
846
846
tslib : ^2.6.2
847
847
xxhashjs : ^0.2.2
848
- checksum : 2ccfbd4d4459d6cdb550ec7be5b8262a238a33086aed8b91ef7c9ec3a03cc0af5b4e7c7249aa9a65b04ad759c9fce034ce067056e03ddb2bdd38612f92f1099c
848
+ checksum : a96790d935fc72fffa32abc95064a8d0577312e174756c621baf36c7e03ceaa5f7a5953c199912e2a00f2ba0eb6dcce310b888d5c5b53d6b1636030969c23b56
849
849
languageName : node
850
850
linkType : hard
851
851
@@ -854,7 +854,7 @@ __metadata:
854
854
resolution : " @lekko/react-sdk@workspace:."
855
855
dependencies :
856
856
" @babel/core " : ^7.23.9
857
- " @lekko/js-sdk " : beta
857
+ " @lekko/js-sdk " : ^0.1.7
858
858
" @rollup/plugin-commonjs " : ^25.0.7
859
859
" @rollup/plugin-node-resolve " : ^15.2.3
860
860
" @rollup/plugin-terser " : ^0.4.4
You can’t perform that action at this time.
0 commit comments