@ledgerhq/vault-common 1.47.2 → 1.47.3
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/.turbo/turbo-build.log +4 -4
- package/CHANGELOG.md +6 -0
- package/package.json +2 -2
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
|
|
2
|
-
> @ledgerhq/vault-common@1.47.
|
|
2
|
+
> @ledgerhq/vault-common@1.47.3 build /home/runner/work/vault-ts/vault-ts/packages/common
|
|
3
3
|
> pnpm clean && pnpm build:cjs && pnpm build:esm
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
> @ledgerhq/vault-common@1.47.
|
|
6
|
+
> @ledgerhq/vault-common@1.47.3 clean /home/runner/work/vault-ts/vault-ts/packages/common
|
|
7
7
|
> rm -rf lib
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
> @ledgerhq/vault-common@1.47.
|
|
10
|
+
> @ledgerhq/vault-common@1.47.3 build:cjs /home/runner/work/vault-ts/vault-ts/packages/common
|
|
11
11
|
> tsc -P tsconfig.build.json --module commonjs --target es5 --outDir lib
|
|
12
12
|
|
|
13
13
|
|
|
14
|
-
> @ledgerhq/vault-common@1.47.
|
|
14
|
+
> @ledgerhq/vault-common@1.47.3 build:esm /home/runner/work/vault-ts/vault-ts/packages/common
|
|
15
15
|
> tsc -P tsconfig.build.json --module es2015 --target es5 --outDir lib/esm
|
|
16
16
|
|
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ledgerhq/vault-common",
|
|
3
|
-
"version": "1.47.
|
|
3
|
+
"version": "1.47.3",
|
|
4
4
|
"description": "> TODO: description",
|
|
5
5
|
"homepage": "https://github.com/LedgerHQ/vault-ts",
|
|
6
6
|
"license": "BSD-2-Clause",
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"build:esm": "tsc -P tsconfig.build.json --module es2015 --target es5 --outDir lib/esm",
|
|
62
62
|
"build:cjs": "tsc -P tsconfig.build.json --module commonjs --target es5 --outDir lib",
|
|
63
63
|
"test": "jest",
|
|
64
|
-
"test:pedantic": "
|
|
64
|
+
"test:pedantic": "jest --coverage --coverageThreshold '{ \"global\": { \"branches\": 100, \"functions\": 100, \"lines\": 100, \"statements\": 100 } }'",
|
|
65
65
|
"lint": "eslint .",
|
|
66
66
|
"typecheck": "tsc --noEmit"
|
|
67
67
|
}
|