ecash-agora 2.6.1 → 2.6.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -0
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -231,3 +231,7 @@ Running from `bitcoin-abc/modules/ecash-agora` if your build dir is `bitcoin-abc
|
|
|
231
231
|
### 2.6.1
|
|
232
232
|
|
|
233
233
|
- `ecash-wallet` is now a dependency and not a dev dependency, and must be specified as such for apps that use `ecash-agora` to avoid missing dep errors. [D18852](https://reviews.bitcoinabc.org/D18852)
|
|
234
|
+
|
|
235
|
+
### 2.6.2
|
|
236
|
+
|
|
237
|
+
- Patch deployment to make sure we actually get our dependencies installed [D18854](https://reviews.bitcoinabc.org/D18854)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ecash-agora",
|
|
3
|
-
"version": "2.6.
|
|
3
|
+
"version": "2.6.2",
|
|
4
4
|
"description": "Library for interacting with the eCash Agora protocol",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -45,6 +45,7 @@
|
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
47
|
"chronik-client": "latest",
|
|
48
|
-
"ecash-lib": "latest"
|
|
48
|
+
"ecash-lib": "latest",
|
|
49
|
+
"ecash-wallet": "file:../ecash-wallet"
|
|
49
50
|
}
|
|
50
51
|
}
|