@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.
@@ -1,16 +1,16 @@
1
1
 
2
- > @ledgerhq/vault-common@1.47.2 build /home/runner/work/vault-ts/vault-ts/packages/common
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.2 clean /home/runner/work/vault-ts/vault-ts/packages/common
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.2 build:cjs /home/runner/work/vault-ts/vault-ts/packages/common
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.2 build:esm /home/runner/work/vault-ts/vault-ts/packages/common
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
@@ -1,5 +1,11 @@
1
1
  # @ledgerhq/vault-common
2
2
 
3
+ ## 1.47.3
4
+
5
+ ### Patch Changes
6
+
7
+ - 837151d: Ensure `pnpm` is used everywhere and with the right version
8
+
3
9
  ## 1.47.2
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ledgerhq/vault-common",
3
- "version": "1.47.2",
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": "yarn test --coverage --coverageThreshold '{ \"global\": { \"branches\": 100, \"functions\": 100, \"lines\": 100, \"statements\": 100 } }'",
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
  }