@metamask/snaps-jest 0.35.1-flask.1 → 0.35.2-flask.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +6 -1
  2. package/package.json +6 -38
package/CHANGELOG.md CHANGED
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [0.35.2-flask.1]
10
+ ### Fixed
11
+ - Fix type issue introduced by [#1532](https://github.com/MetaMask/snaps/pull/1532) ([#1541](https://github.com/MetaMask/snaps/pull/1541))
12
+
9
13
  ## [0.35.1-flask.1]
10
14
  ### Fixed
11
15
  - Fix publishing to NPM ([#1538](https://github.com/MetaMask/snaps/pull/1538))
@@ -14,6 +18,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
14
18
  ### Added
15
19
  - Initial release ([#1438](https://github.com/MetaMask/snaps/pull/1438), [#1488](https://github.com/MetaMask/snaps/pull/1488), [#1519](https://github.com/MetaMask/snaps/pull/1519), [#1532](https://github.com/MetaMask/snaps/pull/1532))
16
20
 
17
- [Unreleased]: https://github.com/MetaMask/snaps/compare/v0.35.1-flask.1...HEAD
21
+ [Unreleased]: https://github.com/MetaMask/snaps/compare/v0.35.2-flask.1...HEAD
22
+ [0.35.2-flask.1]: https://github.com/MetaMask/snaps/compare/v0.35.1-flask.1...v0.35.2-flask.1
18
23
  [0.35.1-flask.1]: https://github.com/MetaMask/snaps/compare/v0.35.0-flask.1...v0.35.1-flask.1
19
24
  [0.35.0-flask.1]: https://github.com/MetaMask/snaps/releases/tag/v0.35.0-flask.1
package/package.json CHANGED
@@ -1,43 +1,11 @@
1
1
  {
2
2
  "name": "@metamask/snaps-jest",
3
- "version": "0.35.1-flask.1",
3
+ "version": "0.35.2-flask.1",
4
4
  "description": "A Jest preset for end-to-end testing MetaMask Snaps, including a Jest environment, and a set of Jest matchers.",
5
5
  "sideEffects": false,
6
- "exports": {
7
- ".": {
8
- "import": "./dist/esm/index.js",
9
- "require": "./dist/cjs/index.js",
10
- "types": "./dist/types/index.d.ts"
11
- },
12
- "./jest-preset": {
13
- "import": "./jest-preset.js",
14
- "require": "./jest-preset.js"
15
- },
16
- "./dist/cjs/*": {
17
- "require": "./dist/cjs/*.js",
18
- "types": "./dist/types/*.d.ts"
19
- },
20
- "./dist/esm/*": {
21
- "import": "./dist/esm/*.js",
22
- "types": "./dist/types/*.d.ts"
23
- }
24
- },
25
6
  "main": "./dist/cjs/index.js",
26
7
  "module": "./dist/esm/index.js",
27
8
  "types": "./dist/types/index.d.ts",
28
- "typesVersions": {
29
- "*": {
30
- "*": [
31
- "./dist/types/*"
32
- ],
33
- "./dist/cjs/*": [
34
- "./dist/types/*"
35
- ],
36
- "./dist/esm/*": [
37
- "./dist/types/*"
38
- ]
39
- }
40
- },
41
9
  "files": [
42
10
  "dist/cjs/**",
43
11
  "dist/esm/**",
@@ -69,11 +37,11 @@
69
37
  "@jest/expect": "^29.5.0",
70
38
  "@jest/globals": "^29.5.0",
71
39
  "@jest/types": "^29.5.0",
72
- "@metamask/rpc-methods": "^0.35.1-flask.1",
73
- "@metamask/snaps-execution-environments": "^0.35.1-flask.1",
74
- "@metamask/snaps-simulator": "^0.35.1-flask.1",
75
- "@metamask/snaps-ui": "^0.35.1-flask.1",
76
- "@metamask/snaps-utils": "^0.35.1-flask.1",
40
+ "@metamask/rpc-methods": "^0.35.2-flask.1",
41
+ "@metamask/snaps-execution-environments": "^0.35.2-flask.1",
42
+ "@metamask/snaps-simulator": "^0.35.2-flask.1",
43
+ "@metamask/snaps-ui": "^0.35.2-flask.1",
44
+ "@metamask/snaps-utils": "^0.35.2-flask.1",
77
45
  "@metamask/utils": "^6.0.1",
78
46
  "express": "^4.18.2",
79
47
  "jest-environment-node": "^29.5.0",