@ledgerhq/hw-app-trx 6.27.2-nightly.0 → 6.27.2-nightly.1

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.
@@ -1,6 +1,5 @@
1
- @ledgerhq/hw-app-trx:build: cache hit, replaying output 221b1db2543a5f9d
1
+ @ledgerhq/hw-app-trx:build: cache hit, replaying output d6bc9c16d6e2c0ba
2
2
  @ledgerhq/hw-app-trx:build:
3
- @ledgerhq/hw-app-trx:build: > @ledgerhq/hw-app-trx@6.27.1 build /home/runner/work/ledger-live/ledger-live/libs/ledgerjs/packages/hw-app-trx
4
- @ledgerhq/hw-app-trx:build: > bash ../../script/build.sh
3
+ @ledgerhq/hw-app-trx:build: > @ledgerhq/hw-app-trx@6.27.2-nightly.0 build /home/runner/work/ledger-live/ledger-live/libs/ledgerjs/packages/hw-app-trx
4
+ @ledgerhq/hw-app-trx:build: > tsc && tsc -m ES6 --outDir lib-es
5
5
  @ledgerhq/hw-app-trx:build:
6
- @ledgerhq/hw-app-trx:build: /home/runner/work/ledger-live/ledger-live/libs/ledgerjs/packages/hw-app-trx
package/CHANGELOG.md CHANGED
@@ -1,10 +1,18 @@
1
1
  # @ledgerhq/hw-app-trx
2
2
 
3
+ ## 6.27.2-nightly.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`203b927b4`](https://github.com/LedgerHQ/ledger-live/commit/203b927b4e5bca3402c85a88c536d519adb18c5f)]:
8
+ - @ledgerhq/errors@6.10.1-nightly.1
9
+ - @ledgerhq/hw-transport@6.27.2-nightly.1
10
+
3
11
  ## 6.27.2-nightly.0
4
12
 
5
13
  ### Patch Changes
6
14
 
7
- - f6f2d8f15: add dummy changesets
8
- - Updated dependencies [f6f2d8f15]
15
+ - 47252169a: add dummy changesets
16
+ - Updated dependencies [47252169a]
9
17
  - @ledgerhq/errors@6.10.1-nightly.0
10
18
  - @ledgerhq/hw-transport@6.27.2-nightly.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ledgerhq/hw-app-trx",
3
- "version": "6.27.2-nightly.0",
3
+ "version": "6.27.2-nightly.1",
4
4
  "description": "Ledger Hardware Wallet Tron Application API",
5
5
  "keywords": [
6
6
  "Ledger",
@@ -27,18 +27,19 @@
27
27
  "types": "lib/Trx.d.ts",
28
28
  "license": "Apache-2.0",
29
29
  "dependencies": {
30
- "@ledgerhq/errors": "^6.10.1-nightly.0",
31
- "@ledgerhq/hw-transport": "^6.27.2-nightly.0"
30
+ "@ledgerhq/errors": "^6.10.1-nightly.1",
31
+ "@ledgerhq/hw-transport": "^6.27.2-nightly.1"
32
32
  },
33
33
  "devDependencies": {
34
- "@ledgerhq/hw-transport-mocker": "^6.27.2-nightly.0"
34
+ "@ledgerhq/hw-transport-mocker": "^6.27.2-nightly.1"
35
35
  },
36
36
  "gitHead": "dd0dea64b58e5a9125c8a422dcffd29e5ef6abec",
37
37
  "scripts": {
38
- "clean": "bash ../../script/clean.sh",
39
- "build": "bash ../../script/build.sh",
40
- "watch": "bash ../../script/watch.sh",
41
- "doc": "bash ../../script/doc.sh",
38
+ "clean": "rimraf lib lib-es",
39
+ "build": "tsc && tsc -m ES6 --outDir lib-es",
40
+ "prewatch": "pnpm build",
41
+ "watch": "tsc --watch",
42
+ "doc": "documentation readme src/** --section=API --pe ts --re ts --re d.ts",
42
43
  "lint": "eslint ./src --no-error-on-unmatched-pattern --ext .ts,.tsx",
43
44
  "lint:fix": "pnpm lint --fix",
44
45
  "test": "jest"