@metamask/snaps-cli 0.35.1-flask.1 → 0.36.0-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.
- package/CHANGELOG.md +11 -1
- package/package.json +4 -32
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [0.36.0-flask.1]
|
|
10
|
+
### Changed
|
|
11
|
+
- No changes this release.
|
|
12
|
+
|
|
13
|
+
## [0.35.2-flask.1]
|
|
14
|
+
### Fixed
|
|
15
|
+
- Fix type issue introduced by [#1532](https://github.com/MetaMask/snaps/pull/1532) ([#1541](https://github.com/MetaMask/snaps/pull/1541))
|
|
16
|
+
|
|
9
17
|
## [0.35.1-flask.1]
|
|
10
18
|
### Changed
|
|
11
19
|
- No changes this release.
|
|
@@ -348,7 +356,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
348
356
|
- Example snaps ([#72](https://github.com/MetaMask/snaps-monorepo/pull/72))
|
|
349
357
|
- The examples now live in their own package, [`@metamask/snap-examples`](https://npmjs.com/package/@metamask/snap-examples).
|
|
350
358
|
|
|
351
|
-
[Unreleased]: https://github.com/MetaMask/snaps/compare/v0.
|
|
359
|
+
[Unreleased]: https://github.com/MetaMask/snaps/compare/v0.36.0-flask.1...HEAD
|
|
360
|
+
[0.36.0-flask.1]: https://github.com/MetaMask/snaps/compare/v0.35.2-flask.1...v0.36.0-flask.1
|
|
361
|
+
[0.35.2-flask.1]: https://github.com/MetaMask/snaps/compare/v0.35.1-flask.1...v0.35.2-flask.1
|
|
352
362
|
[0.35.1-flask.1]: https://github.com/MetaMask/snaps/compare/v0.35.0-flask.1...v0.35.1-flask.1
|
|
353
363
|
[0.35.0-flask.1]: https://github.com/MetaMask/snaps/compare/v0.34.1-flask.1...v0.35.0-flask.1
|
|
354
364
|
[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.
|
|
3
|
+
"version": "0.36.0-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
|
},
|
|
@@ -58,7 +30,7 @@
|
|
|
58
30
|
"build:readme": "node ./scripts/updateReadme.js",
|
|
59
31
|
"build:clean": "yarn clean && yarn build",
|
|
60
32
|
"build:watch": "tsc-watch --onSuccess 'yarn build:chmod'",
|
|
61
|
-
"clean": "rimraf '*.tsbuildinfo' 'dist
|
|
33
|
+
"clean": "rimraf '*.tsbuildinfo' 'dist'",
|
|
62
34
|
"test": "jest --runInBand && yarn posttest",
|
|
63
35
|
"posttest": "jest-it-up",
|
|
64
36
|
"test:watch": "yarn test --watch",
|
|
@@ -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.
|
|
85
|
-
"@metamask/snaps-utils": "^0.
|
|
56
|
+
"@metamask/snaps-browserify-plugin": "^0.36.0-flask.1",
|
|
57
|
+
"@metamask/snaps-utils": "^0.36.0-flask.1",
|
|
86
58
|
"@metamask/utils": "^6.0.1",
|
|
87
59
|
"babelify": "^10.0.0",
|
|
88
60
|
"browserify": "^17.0.0",
|