Browse Source

fix(build): include lnd resources in builds

Ensure that the lnd binary and rpc.proto files are properly included in the
final electron build, regardless of the build platform.
renovate/lint-staged-8.x
Tom Kirkpatrick 7 years ago
parent
commit
5a062715dd
No known key found for this signature in database GPG Key ID: 72203A8EC5967EA8
  1. 7
      package.json

7
package.json

@ -85,10 +85,11 @@
"output": "release"
},
"extraResources": [
"./rpc.proto",
"resources/rpc.proto",
{
"from": "./resources/bin/win32/lnd.exe",
"to": "./bin/lnd.exe"
"from": "resources/bin/${platform}",
"to": "bin",
"filter": [ "lnd*" ]
}
]
},

Loading…
Cancel
Save