@metamask/snaps-rollup-plugin 2.0.0 → 3.0.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 +11 -1
  2. package/package.json +6 -7
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
+ ## [3.0.1]
10
+ ### Changed
11
+ - Update multiple MetaMask dependencies ([#1841](https://github.com/MetaMask/snaps/pull/1841))
12
+
13
+ ## [3.0.0]
14
+ ### Changed
15
+ - **BREAKING:** Bump minimum Node.js version to `^18.16.0` ([#1741](https://github.com/MetaMask/snaps/pull/1741))
16
+
9
17
  ## [2.0.0]
10
18
  ### Changed
11
19
  - Initial stable release from main branch ([#1757](https://github.com/MetaMask/snaps/pull/1757))
@@ -20,7 +28,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
20
28
  - The version of the package no longer needs to match the version of all other
21
29
  MetaMask Snaps packages.
22
30
 
23
- [Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-rollup-plugin@2.0.0...HEAD
31
+ [Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-rollup-plugin@3.0.1...HEAD
32
+ [3.0.1]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-rollup-plugin@3.0.0...@metamask/snaps-rollup-plugin@3.0.1
33
+ [3.0.0]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-rollup-plugin@2.0.0...@metamask/snaps-rollup-plugin@3.0.0
24
34
  [2.0.0]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-rollup-plugin@0.37.3-flask.1...@metamask/snaps-rollup-plugin@2.0.0
25
35
  [0.37.3-flask.1]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-rollup-plugin@0.37.2-flask.1...@metamask/snaps-rollup-plugin@0.37.3-flask.1
26
36
  [0.37.2-flask.1]: https://github.com/MetaMask/snaps/releases/tag/@metamask/snaps-rollup-plugin@0.37.2-flask.1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@metamask/snaps-rollup-plugin",
3
- "version": "2.0.0",
3
+ "version": "3.0.1",
4
4
  "keywords": [
5
5
  "rollup",
6
6
  "rollup-plugin"
@@ -34,17 +34,16 @@
34
34
  "build:cjs": "swc src --out-dir dist/cjs --config-file ../../.swcrc.build.json --config module.type=commonjs",
35
35
  "build:clean": "yarn clean && yarn build",
36
36
  "clean": "rimraf '*.tsbuildinfo' 'dist'",
37
- "prepare-manifest:preview": "../../scripts/prepare-preview-manifest.sh",
38
37
  "publish:preview": "yarn npm publish --tag preview",
39
38
  "lint:ci": "yarn lint",
40
39
  "lint:dependencies": "depcheck"
41
40
  },
42
41
  "dependencies": {
43
- "@metamask/snaps-utils": "^2.0.0"
42
+ "@metamask/snaps-utils": "^3.1.0"
44
43
  },
45
44
  "devDependencies": {
46
- "@lavamoat/allow-scripts": "^2.3.1",
47
- "@metamask/auto-changelog": "^3.1.0",
45
+ "@lavamoat/allow-scripts": "^2.5.1",
46
+ "@metamask/auto-changelog": "^3.3.0",
48
47
  "@metamask/eslint-config": "^12.1.0",
49
48
  "@metamask/eslint-config-jest": "^12.1.0",
50
49
  "@metamask/eslint-config-nodejs": "^12.1.0",
@@ -57,7 +56,7 @@
57
56
  "@typescript-eslint/eslint-plugin": "^5.42.1",
58
57
  "@typescript-eslint/parser": "^5.42.1",
59
58
  "deepmerge": "^4.2.2",
60
- "depcheck": "^1.4.5",
59
+ "depcheck": "^1.4.7",
61
60
  "eslint": "^8.27.0",
62
61
  "eslint-config-prettier": "^8.5.0",
63
62
  "eslint-plugin-import": "^2.26.0",
@@ -76,7 +75,7 @@
76
75
  "typescript": "~4.8.4"
77
76
  },
78
77
  "engines": {
79
- "node": ">=16.0.0"
78
+ "node": "^18.16 || >=20"
80
79
  },
81
80
  "publishConfig": {
82
81
  "access": "public",