@metamask/snaps-rollup-plugin 0.37.2-flask.1 → 0.37.3-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 +6 -1
- package/package.json +7 -5
package/CHANGELOG.md
CHANGED
|
@@ -6,11 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [0.37.3-flask.1]
|
|
10
|
+
### Fixed
|
|
11
|
+
- Remove unused dependencies ([#1680](https://github.com/MetaMask/snaps/pull/1680))
|
|
12
|
+
|
|
9
13
|
## [0.37.2-flask.1]
|
|
10
14
|
### Changed
|
|
11
15
|
- Release package independently ([#1600](https://github.com/MetaMask/snaps/pull/1600))
|
|
12
16
|
- The version of the package no longer needs to match the version of all other
|
|
13
17
|
MetaMask Snaps packages.
|
|
14
18
|
|
|
15
|
-
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-rollup-plugin@0.37.
|
|
19
|
+
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-rollup-plugin@0.37.3-flask.1...HEAD
|
|
20
|
+
[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
|
|
16
21
|
[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": "0.37.
|
|
3
|
+
"version": "0.37.3-flask.1",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"rollup",
|
|
6
6
|
"rollup-plugin"
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"test:ci": "yarn test",
|
|
25
25
|
"lint:eslint": "eslint . --cache --ext js,ts,jsx,tsx",
|
|
26
26
|
"lint:misc": "prettier --no-error-on-unmatched-pattern --loglevel warn \"**/*.json\" \"**/*.md\" \"**/*.html\" \"!CHANGELOG.md\" --ignore-path ../../.gitignore",
|
|
27
|
-
"lint": "yarn lint:eslint && yarn lint:misc --check && yarn lint:changelog",
|
|
27
|
+
"lint": "yarn lint:eslint && yarn lint:misc --check && yarn lint:changelog && yarn lint:dependencies",
|
|
28
28
|
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write",
|
|
29
29
|
"lint:changelog": "../../scripts/validate-changelog.sh @metamask/snaps-rollup-plugin",
|
|
30
30
|
"build": "yarn build:source && yarn build:types",
|
|
@@ -36,10 +36,11 @@
|
|
|
36
36
|
"clean": "rimraf '*.tsbuildinfo' 'dist'",
|
|
37
37
|
"prepare-manifest:preview": "../../scripts/prepare-preview-manifest.sh",
|
|
38
38
|
"publish:preview": "yarn npm publish --tag preview",
|
|
39
|
-
"lint:ci": "yarn lint"
|
|
39
|
+
"lint:ci": "yarn lint",
|
|
40
|
+
"lint:dependencies": "depcheck"
|
|
40
41
|
},
|
|
41
42
|
"dependencies": {
|
|
42
|
-
"@metamask/snaps-utils": "^0.
|
|
43
|
+
"@metamask/snaps-utils": "^0.38.2-flask.1"
|
|
43
44
|
},
|
|
44
45
|
"devDependencies": {
|
|
45
46
|
"@lavamoat/allow-scripts": "^2.3.1",
|
|
@@ -50,12 +51,13 @@
|
|
|
50
51
|
"@metamask/eslint-config-typescript": "^12.1.0",
|
|
51
52
|
"@rollup/plugin-virtual": "^2.1.0",
|
|
52
53
|
"@swc/cli": "^0.1.62",
|
|
53
|
-
"@swc/core": "
|
|
54
|
+
"@swc/core": "1.3.78",
|
|
54
55
|
"@swc/jest": "^0.2.26",
|
|
55
56
|
"@types/jest": "^27.5.1",
|
|
56
57
|
"@typescript-eslint/eslint-plugin": "^5.42.1",
|
|
57
58
|
"@typescript-eslint/parser": "^5.42.1",
|
|
58
59
|
"deepmerge": "^4.2.2",
|
|
60
|
+
"depcheck": "^1.4.5",
|
|
59
61
|
"eslint": "^8.27.0",
|
|
60
62
|
"eslint-config-prettier": "^8.5.0",
|
|
61
63
|
"eslint-plugin-import": "^2.26.0",
|