@metamask/snaps-cli 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 +3 -31
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
  ### Changed
11
15
  - No changes this release.
@@ -348,7 +352,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
348
352
  - Example snaps ([#72](https://github.com/MetaMask/snaps-monorepo/pull/72))
349
353
  - The examples now live in their own package, [`@metamask/snap-examples`](https://npmjs.com/package/@metamask/snap-examples).
350
354
 
351
- [Unreleased]: https://github.com/MetaMask/snaps/compare/v0.35.1-flask.1...HEAD
355
+ [Unreleased]: https://github.com/MetaMask/snaps/compare/v0.35.2-flask.1...HEAD
356
+ [0.35.2-flask.1]: https://github.com/MetaMask/snaps/compare/v0.35.1-flask.1...v0.35.2-flask.1
352
357
  [0.35.1-flask.1]: https://github.com/MetaMask/snaps/compare/v0.35.0-flask.1...v0.35.1-flask.1
353
358
  [0.35.0-flask.1]: https://github.com/MetaMask/snaps/compare/v0.34.1-flask.1...v0.35.0-flask.1
354
359
  [0.34.1-flask.1]: https://github.com/MetaMask/snaps/compare/v0.34.0-flask.1...v0.34.1-flask.1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@metamask/snaps-cli",
3
- "version": "0.35.1-flask.1",
3
+ "version": "0.35.2-flask.1",
4
4
  "description": "A CLI for developing MetaMask Snaps.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -8,37 +8,9 @@
8
8
  },
9
9
  "license": "ISC",
10
10
  "sideEffects": false,
11
- "exports": {
12
- ".": {
13
- "import": "./dist/esm/index.js",
14
- "require": "./dist/cjs/index.js",
15
- "types": "./dist/types/index.d.ts"
16
- },
17
- "./dist/cjs/*": {
18
- "require": "./dist/cjs/*.js",
19
- "types": "./dist/types/*.d.ts"
20
- },
21
- "./dist/esm/*": {
22
- "import": "./dist/esm/*.js",
23
- "types": "./dist/types/*.d.ts"
24
- }
25
- },
26
11
  "main": "./dist/cjs/index.js",
27
12
  "module": "./dist/esm/index.js",
28
13
  "types": "./dist/types/index.d.ts",
29
- "typesVersions": {
30
- "*": {
31
- "*": [
32
- "./dist/types/*"
33
- ],
34
- "./dist/cjs/*": [
35
- "./dist/types/*"
36
- ],
37
- "./dist/esm/*": [
38
- "./dist/types/*"
39
- ]
40
- }
41
- },
42
14
  "bin": {
43
15
  "mm-snap": "./dist/cjs/main.js"
44
16
  },
@@ -81,8 +53,8 @@
81
53
  "@babel/plugin-transform-runtime": "^7.16.7",
82
54
  "@babel/preset-env": "^7.20.12",
83
55
  "@babel/preset-typescript": "^7.20.12",
84
- "@metamask/snaps-browserify-plugin": "^0.35.1-flask.1",
85
- "@metamask/snaps-utils": "^0.35.1-flask.1",
56
+ "@metamask/snaps-browserify-plugin": "^0.35.2-flask.1",
57
+ "@metamask/snaps-utils": "^0.35.2-flask.1",
86
58
  "@metamask/utils": "^6.0.1",
87
59
  "babelify": "^10.0.0",
88
60
  "browserify": "^17.0.0",