Closed D4ryl00 closed 1 month ago
Tested on Android and iOS, with new expo app (npx create-expo-app my-app --template expo-template-blank-typescript
) and the example app (in the example folder).
:tada: This PR is included in version 1.0.2 :tada:
The release is available on:
Your semantic-release bot :package::rocket:
Doing
yarn
oryarn install
creates abuild
directory with compiled files, but omits to includesrc/api/rpcmanager.pb.d.ts
,src/api/rpcmanager.pb.js
,src/api/protocoltypes.pb.d.ts
andsrc/api/protocoltypes.pb.js
intobuild/api
. So when a third app installs weshnet-expo as a dependency,build/api/index.js
can't find those files and returns an error.This PR add a new package.json script to copy those files into the
build/api
folder`. This script is added in the Makefile and in the Github Action release workflow.