@ledgerhq/coin-xrp 7.24.0 → 7.25.0
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/CHANGELOG.md +6 -0
- package/package.json +8 -2
- package/jest.config.js +0 -32
- package/jest.integ.config.js +0 -21
- package/knip.json +0 -11
- package/tsconfig.build.json +0 -22
- package/tsconfig.json +0 -23
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @ledgerhq/coin-xrp
|
|
2
2
|
|
|
3
|
+
## 7.25.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#707](https://github.com/LedgerHQ/coin-modules/pull/707) [`a679122`](https://github.com/LedgerHQ/coin-modules/commit/a679122b77e5c27147ebd84666c14fc816804c94) Thanks [@henri-ly](https://github.com/henri-ly)! - Add hypercore + small refacto of config
|
|
8
|
+
|
|
3
9
|
## 7.24.0
|
|
4
10
|
|
|
5
11
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ledgerhq/coin-xrp",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.25.0",
|
|
4
4
|
"description": "Ledger XRP Coin integration",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Ledger",
|
|
@@ -20,6 +20,12 @@
|
|
|
20
20
|
"publishConfig": {
|
|
21
21
|
"access": "public"
|
|
22
22
|
},
|
|
23
|
+
"files": [
|
|
24
|
+
"lib",
|
|
25
|
+
"lib-es",
|
|
26
|
+
"src",
|
|
27
|
+
"CHANGELOG.md"
|
|
28
|
+
],
|
|
23
29
|
"typesVersions": {
|
|
24
30
|
"*": {
|
|
25
31
|
"lib/*": [
|
|
@@ -72,7 +78,7 @@
|
|
|
72
78
|
"invariant": "^2.2.4",
|
|
73
79
|
"ripple-address-codec": "^5.0.0",
|
|
74
80
|
"ripple-binary-codec": "^1.3.0",
|
|
75
|
-
"@ledgerhq/coin-module-framework": "^3.
|
|
81
|
+
"@ledgerhq/coin-module-framework": "^3.6.0"
|
|
76
82
|
},
|
|
77
83
|
"devDependencies": {
|
|
78
84
|
"@faker-js/faker": "^8.4.1",
|
package/jest.config.js
DELETED
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
// SPDX-FileCopyrightText: © 2024 LEDGER SAS
|
|
2
|
-
// SPDX-License-Identifier: Apache-2.0
|
|
3
|
-
|
|
4
|
-
// `workerThreads: true` is required for validating object with `bigint` values
|
|
5
|
-
module.exports = {
|
|
6
|
-
testEnvironment: "node",
|
|
7
|
-
transform: {
|
|
8
|
-
"^.+\\.(ts|tsx)$": [
|
|
9
|
-
"@swc/jest",
|
|
10
|
-
{
|
|
11
|
-
jsc: {
|
|
12
|
-
target: "esnext",
|
|
13
|
-
},
|
|
14
|
-
},
|
|
15
|
-
],
|
|
16
|
-
},
|
|
17
|
-
passWithNoTests: true,
|
|
18
|
-
testPathIgnorePatterns: ["lib/", "lib-es/", ".*\\.(integ|integration)\\.test\\.[tj]s"],
|
|
19
|
-
collectCoverageFrom: [
|
|
20
|
-
"src/**/*.ts",
|
|
21
|
-
"!src/**/*.test.ts",
|
|
22
|
-
"!src/**/*.spec.ts",
|
|
23
|
-
"!src/test/**/*.ts",
|
|
24
|
-
],
|
|
25
|
-
coverageReporters: ["json", ["lcov", { file: "lcov.info", projectRoot: "../../../" }], "text"],
|
|
26
|
-
workerThreads: true,
|
|
27
|
-
reporters: [
|
|
28
|
-
"default",
|
|
29
|
-
["jest-sonar", { outputName: "sonar-executionTests-report.xml", reportedFilePath: "absolute" }],
|
|
30
|
-
],
|
|
31
|
-
setupFilesAfterEnv: [/* "@ledgerhq/disable-network-setup" */],
|
|
32
|
-
};
|
package/jest.integ.config.js
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
// SPDX-FileCopyrightText: © 2024 LEDGER SAS
|
|
2
|
-
// SPDX-License-Identifier: Apache-2.0
|
|
3
|
-
|
|
4
|
-
/** @type {import('jest').Config} */
|
|
5
|
-
module.exports = {
|
|
6
|
-
testEnvironment: "node",
|
|
7
|
-
testRegex: ".integ.test.ts$",
|
|
8
|
-
testPathIgnorePatterns: ["lib/", "lib-es/"],
|
|
9
|
-
testTimeout: 60_000,
|
|
10
|
-
forceExit: true,
|
|
11
|
-
transform: {
|
|
12
|
-
"^.+\\.(t|j)sx?$": [
|
|
13
|
-
"@swc/jest",
|
|
14
|
-
{
|
|
15
|
-
jsc: {
|
|
16
|
-
target: "esnext",
|
|
17
|
-
},
|
|
18
|
-
},
|
|
19
|
-
],
|
|
20
|
-
},
|
|
21
|
-
};
|
package/knip.json
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema": "https://unpkg.com/knip@5.34.1/schema.json",
|
|
3
|
-
"entry": [
|
|
4
|
-
"src/api/index.ts",
|
|
5
|
-
"src/index.ts",
|
|
6
|
-
"src/api/validateAddress.ts",
|
|
7
|
-
"src/supportedFeatures.ts"
|
|
8
|
-
],
|
|
9
|
-
"project": ["src/**/*.ts"],
|
|
10
|
-
"ignoreDependencies": ["@ledgerhq/coin-module-framework"]
|
|
11
|
-
}
|
package/tsconfig.build.json
DELETED
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"extends": "./tsconfig.json",
|
|
3
|
-
"compilerOptions": {
|
|
4
|
-
"customConditions": [],
|
|
5
|
-
"types": [
|
|
6
|
-
"node"
|
|
7
|
-
]
|
|
8
|
-
},
|
|
9
|
-
"exclude": [
|
|
10
|
-
"**/*.test.ts",
|
|
11
|
-
"**/*.test.tsx",
|
|
12
|
-
"**/*.spec.ts",
|
|
13
|
-
"**/*.spec.tsx",
|
|
14
|
-
"**/__tests__/**/*",
|
|
15
|
-
"**/tests/**/*",
|
|
16
|
-
"**/__mocks__/**/*",
|
|
17
|
-
"**/*.test.js",
|
|
18
|
-
"**/*.test.jsx",
|
|
19
|
-
"**/*.spec.js",
|
|
20
|
-
"**/*.spec.jsx"
|
|
21
|
-
]
|
|
22
|
-
}
|
package/tsconfig.json
DELETED
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"extends": "../../tsconfig.base",
|
|
3
|
-
"compilerOptions": {
|
|
4
|
-
"noUnusedLocals": true,
|
|
5
|
-
"noUnusedParameters": true,
|
|
6
|
-
"declaration": true,
|
|
7
|
-
"declarationMap": true,
|
|
8
|
-
"lib": [
|
|
9
|
-
"es2020",
|
|
10
|
-
"dom"
|
|
11
|
-
],
|
|
12
|
-
"types": [
|
|
13
|
-
"node",
|
|
14
|
-
"jest"
|
|
15
|
-
],
|
|
16
|
-
"outDir": "lib",
|
|
17
|
-
"rootDir": "src",
|
|
18
|
-
"exactOptionalPropertyTypes": true
|
|
19
|
-
},
|
|
20
|
-
"include": [
|
|
21
|
-
"src/**/*"
|
|
22
|
-
]
|
|
23
|
-
}
|