@metamask/snaps-cli 2.0.2 → 3.0.0
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 +6 -1
- package/package.json +5 -5
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
|
+
## [3.0.0]
|
|
10
|
+
### Changed
|
|
11
|
+
- **BREAKING:** Bump minimum Node.js version to `^18.16.0` ([#1741](https://github.com/MetaMask/snaps/pull/1741))
|
|
12
|
+
|
|
9
13
|
## [2.0.2]
|
|
10
14
|
### Fixed
|
|
11
15
|
- Fix Webpack being unable to find `swc-loader` in some cases ([#1798](https://github.com/MetaMask/snaps/pull/1798))
|
|
@@ -56,7 +60,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
56
60
|
- The version of the package no longer needs to match the version of all other
|
|
57
61
|
MetaMask Snaps packages.
|
|
58
62
|
|
|
59
|
-
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-cli@
|
|
63
|
+
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-cli@3.0.0...HEAD
|
|
64
|
+
[3.0.0]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-cli@2.0.2...@metamask/snaps-cli@3.0.0
|
|
60
65
|
[2.0.2]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-cli@2.0.1...@metamask/snaps-cli@2.0.2
|
|
61
66
|
[2.0.1]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-cli@2.0.0...@metamask/snaps-cli@2.0.1
|
|
62
67
|
[2.0.0]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-cli@0.38.4-flask.1...@metamask/snaps-cli@2.0.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metamask/snaps-cli",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.0",
|
|
4
4
|
"description": "A CLI for developing MetaMask Snaps.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -55,8 +55,8 @@
|
|
|
55
55
|
"@babel/plugin-transform-runtime": "^7.16.7",
|
|
56
56
|
"@babel/preset-env": "^7.20.12",
|
|
57
57
|
"@babel/preset-typescript": "^7.20.12",
|
|
58
|
-
"@metamask/snaps-utils": "^
|
|
59
|
-
"@metamask/snaps-webpack-plugin": "^
|
|
58
|
+
"@metamask/snaps-utils": "^3.0.0",
|
|
59
|
+
"@metamask/snaps-webpack-plugin": "^3.0.0",
|
|
60
60
|
"@metamask/utils": "^8.1.0",
|
|
61
61
|
"@swc/core": "1.3.78",
|
|
62
62
|
"assert": "^2.0.0",
|
|
@@ -98,7 +98,7 @@
|
|
|
98
98
|
},
|
|
99
99
|
"devDependencies": {
|
|
100
100
|
"@lavamoat/allow-scripts": "^2.5.1",
|
|
101
|
-
"@metamask/auto-changelog": "^3.
|
|
101
|
+
"@metamask/auto-changelog": "^3.3.0",
|
|
102
102
|
"@metamask/eslint-config": "^12.1.0",
|
|
103
103
|
"@metamask/eslint-config-jest": "^12.1.0",
|
|
104
104
|
"@metamask/eslint-config-nodejs": "^12.1.0",
|
|
@@ -136,7 +136,7 @@
|
|
|
136
136
|
"typescript": "~4.8.4"
|
|
137
137
|
},
|
|
138
138
|
"engines": {
|
|
139
|
-
"node": ">=
|
|
139
|
+
"node": "^18.16 || >=20"
|
|
140
140
|
},
|
|
141
141
|
"publishConfig": {
|
|
142
142
|
"access": "public",
|