@metamask/snaps-cli 0.15.0 → 0.18.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/README.md +4 -2
- package/dist/builders.d.ts +6 -0
- package/dist/builders.js +20 -1
- package/dist/builders.js.map +1 -1
- package/dist/cli.d.ts +7 -0
- package/dist/cli.js +8 -0
- package/dist/cli.js.map +1 -1
- package/dist/cmds/build/buildHandler.d.ts +4 -4
- package/dist/cmds/build/buildHandler.js +5 -5
- package/dist/cmds/build/buildHandler.js.map +1 -1
- package/dist/cmds/build/bundle.d.ts +4 -2
- package/dist/cmds/build/bundle.js +15 -14
- package/dist/cmds/build/bundle.js.map +1 -1
- package/dist/cmds/build/utils.d.ts +21 -8
- package/dist/cmds/build/utils.js +22 -9
- package/dist/cmds/build/utils.js.map +1 -1
- package/dist/cmds/eval/eval-worker.js +17 -14
- package/dist/cmds/eval/eval-worker.js.map +1 -1
- package/dist/cmds/eval/evalHandler.d.ts +7 -0
- package/dist/cmds/eval/evalHandler.js +7 -0
- package/dist/cmds/eval/evalHandler.js.map +1 -1
- package/dist/cmds/eval/mock.d.ts +11 -0
- package/dist/cmds/eval/mock.js +39 -4
- package/dist/cmds/eval/mock.js.map +1 -1
- package/dist/cmds/eval/workerEval.d.ts +7 -0
- package/dist/cmds/eval/workerEval.js +11 -6
- package/dist/cmds/eval/workerEval.js.map +1 -1
- package/dist/cmds/init/index.js +14 -6
- package/dist/cmds/init/index.js.map +1 -1
- package/dist/cmds/init/init-template.json +5 -1
- package/dist/cmds/init/initHandler.d.ts +11 -0
- package/dist/cmds/init/initHandler.js +39 -4
- package/dist/cmds/init/initHandler.js.map +1 -1
- package/dist/cmds/init/initUtils.d.ts +21 -4
- package/dist/cmds/init/initUtils.js +55 -7
- package/dist/cmds/init/initUtils.js.map +1 -1
- package/dist/cmds/manifest/index.js +1 -1
- package/dist/cmds/manifest/index.js.map +1 -1
- package/dist/cmds/manifest/manifestHandler.d.ts +1 -0
- package/dist/cmds/manifest/manifestHandler.js +24 -7
- package/dist/cmds/manifest/manifestHandler.js.map +1 -1
- package/dist/cmds/serve/index.js +2 -44
- package/dist/cmds/serve/index.js.map +1 -1
- package/dist/cmds/serve/serveHandler.d.ts +10 -0
- package/dist/cmds/serve/serveHandler.js +51 -0
- package/dist/cmds/serve/serveHandler.js.map +1 -0
- package/dist/cmds/serve/serveUtils.d.ts +17 -0
- package/dist/cmds/serve/serveUtils.js +17 -0
- package/dist/cmds/serve/serveUtils.js.map +1 -1
- package/dist/cmds/watch/index.js +3 -0
- package/dist/cmds/watch/index.js.map +1 -1
- package/dist/cmds/watch/watchHandler.d.ts +4 -4
- package/dist/cmds/watch/watchHandler.js +13 -7
- package/dist/cmds/watch/watchHandler.js.map +1 -1
- package/dist/utils/fs.d.ts +5 -5
- package/dist/utils/fs.js +5 -5
- package/dist/utils/fs.js.map +1 -1
- package/dist/utils/misc.d.ts +16 -13
- package/dist/utils/misc.js +16 -13
- package/dist/utils/misc.js.map +1 -1
- package/dist/utils/readline.d.ts +25 -0
- package/dist/utils/readline.js +25 -0
- package/dist/utils/readline.js.map +1 -1
- package/dist/utils/snap-config.d.ts +15 -0
- package/dist/utils/snap-config.js +15 -1
- package/dist/utils/snap-config.js.map +1 -1
- package/dist/utils/validate-fs.d.ts +19 -18
- package/dist/utils/validate-fs.js +21 -20
- package/dist/utils/validate-fs.js.map +1 -1
- package/package.json +16 -15
- package/CHANGELOG.md +0 -217
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metamask/snaps-cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.18.0",
|
|
4
4
|
"description": "A CLI for developing MetaMask Snaps.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -14,7 +14,6 @@
|
|
|
14
14
|
"dist/"
|
|
15
15
|
],
|
|
16
16
|
"scripts": {
|
|
17
|
-
"setup": "yarn install && yarn allow-scripts",
|
|
18
17
|
"shasum": "node ./scripts/computeSnapShasum.js",
|
|
19
18
|
"build:init-template": "node ./scripts/createInitTemplate.js && yarn prettier --check src/cmds/init/init-template.json",
|
|
20
19
|
"build:guards": "ts-auto-guard --guard-file-name=__GENERATED__ ./src/utils/snap-config.ts",
|
|
@@ -36,7 +35,7 @@
|
|
|
36
35
|
"lint:misc": "prettier '**/*.json' '**/*.md' '!CHANGELOG.md' --ignore-path ../../.gitignore",
|
|
37
36
|
"lint": "yarn lint:eslint && yarn lint:misc --check",
|
|
38
37
|
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write",
|
|
39
|
-
"publish": "../../scripts/publish-package.sh"
|
|
38
|
+
"publish:package": "../../scripts/publish-package.sh"
|
|
40
39
|
},
|
|
41
40
|
"dependencies": {
|
|
42
41
|
"@babel/core": "^7.16.7",
|
|
@@ -47,12 +46,12 @@
|
|
|
47
46
|
"@babel/plugin-transform-runtime": "^7.16.7",
|
|
48
47
|
"@babel/preset-env": "^7.16.7",
|
|
49
48
|
"@babel/preset-typescript": "^7.16.7",
|
|
50
|
-
"@metamask/snap-controllers": "^0.
|
|
51
|
-
"@metamask/snaps-browserify-plugin": "^0.
|
|
49
|
+
"@metamask/snap-controllers": "^0.18.0",
|
|
50
|
+
"@metamask/snaps-browserify-plugin": "^0.18.0",
|
|
52
51
|
"@metamask/utils": "^2.0.0",
|
|
53
52
|
"babelify": "^10.0.0",
|
|
54
53
|
"browserify": "^17.0.0",
|
|
55
|
-
"chokidar": "^3.
|
|
54
|
+
"chokidar": "^3.5.2",
|
|
56
55
|
"init-package-json": "^1.10.3",
|
|
57
56
|
"is-url": "^1.2.4",
|
|
58
57
|
"mkdirp": "^1.0.4",
|
|
@@ -64,16 +63,16 @@
|
|
|
64
63
|
"yargs-parser": "^20.2.2"
|
|
65
64
|
},
|
|
66
65
|
"devDependencies": {
|
|
67
|
-
"@lavamoat/allow-scripts": "^
|
|
66
|
+
"@lavamoat/allow-scripts": "^2.0.3",
|
|
68
67
|
"@metamask/auto-changelog": "^2.6.0",
|
|
69
|
-
"@metamask/eslint-config": "^
|
|
70
|
-
"@metamask/eslint-config-jest": "^
|
|
71
|
-
"@metamask/eslint-config-nodejs": "^
|
|
72
|
-
"@metamask/eslint-config-typescript": "^
|
|
68
|
+
"@metamask/eslint-config": "^9.0.0",
|
|
69
|
+
"@metamask/eslint-config-jest": "^9.0.0",
|
|
70
|
+
"@metamask/eslint-config-nodejs": "^9.0.0",
|
|
71
|
+
"@metamask/eslint-config-typescript": "^9.0.1",
|
|
73
72
|
"@types/browserify": "^12.0.36",
|
|
74
73
|
"@types/init-package-json": "^1.10.0",
|
|
75
74
|
"@types/is-url": "^1.2.28",
|
|
76
|
-
"@types/jest": "^
|
|
75
|
+
"@types/jest": "^27.5.1",
|
|
77
76
|
"@types/mkdirp": "^1.0.2",
|
|
78
77
|
"@types/node": "^14.14.25",
|
|
79
78
|
"@types/rimraf": "^3.0.0",
|
|
@@ -86,22 +85,24 @@
|
|
|
86
85
|
"eslint-config-prettier": "^8.3.0",
|
|
87
86
|
"eslint-plugin-import": "^2.23.4",
|
|
88
87
|
"eslint-plugin-jest": "^24.4.0",
|
|
88
|
+
"eslint-plugin-jsdoc": "^36.1.0",
|
|
89
89
|
"eslint-plugin-node": "^11.1.0",
|
|
90
90
|
"eslint-plugin-prettier": "^3.4.0",
|
|
91
91
|
"execa": "^5.1.1",
|
|
92
|
-
"jest": "^
|
|
92
|
+
"jest": "^27.5.1",
|
|
93
93
|
"jest-it-up": "^2.0.0",
|
|
94
94
|
"patch-package": "^6.4.7",
|
|
95
95
|
"prettier": "^2.3.2",
|
|
96
|
+
"prettier-plugin-packagejson": "^2.2.11",
|
|
96
97
|
"rimraf": "^3.0.2",
|
|
97
98
|
"ts-auto-guard": "^2.3.0",
|
|
98
|
-
"ts-jest": "^
|
|
99
|
+
"ts-jest": "^27.1.5",
|
|
99
100
|
"ts-node": "^9.1.1",
|
|
100
101
|
"tsc-watch": "^4.5.0",
|
|
101
102
|
"typescript": "^4.4.0"
|
|
102
103
|
},
|
|
103
104
|
"engines": {
|
|
104
|
-
"node": ">=
|
|
105
|
+
"node": ">=16.0.0"
|
|
105
106
|
},
|
|
106
107
|
"publishConfig": {
|
|
107
108
|
"access": "public",
|
package/CHANGELOG.md
DELETED
|
@@ -1,217 +0,0 @@
|
|
|
1
|
-
# Changelog
|
|
2
|
-
All notable changes to this project will be documented in this file.
|
|
3
|
-
|
|
4
|
-
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
5
|
-
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
|
-
|
|
7
|
-
## [Unreleased]
|
|
8
|
-
|
|
9
|
-
## [0.15.0]
|
|
10
|
-
### Added
|
|
11
|
-
- Add support for building TypeScript Snaps ([#443](https://github.com/MetaMask/snaps-skunkworks/pull/443))
|
|
12
|
-
|
|
13
|
-
### Fixed
|
|
14
|
-
- Fix an issue where comment stripping would break for large files ([#468](https://github.com/MetaMask/snaps-skunkworks/pull/468))
|
|
15
|
-
|
|
16
|
-
## [0.14.0]
|
|
17
|
-
### Changed
|
|
18
|
-
- **BREAKING:** Increase TypeScript compilation target to ES2020 ([#449](https://github.com/MetaMask/snaps-skunkworks/pull/449))
|
|
19
|
-
- This should not be breaking for consumers on any non-deprecated browser or Node.js version.
|
|
20
|
-
|
|
21
|
-
## [0.13.0]
|
|
22
|
-
### Changed
|
|
23
|
-
- No changes this release.
|
|
24
|
-
|
|
25
|
-
## [0.12.0]
|
|
26
|
-
### Changed
|
|
27
|
-
- No changes this release.
|
|
28
|
-
|
|
29
|
-
## [0.11.1]
|
|
30
|
-
### Changed
|
|
31
|
-
- No changes this release.
|
|
32
|
-
|
|
33
|
-
## [0.11.0]
|
|
34
|
-
### Added
|
|
35
|
-
- Add self to mock endowments ([#341](https://github.com/MetaMask/snaps-skunkworks/pull/341))
|
|
36
|
-
|
|
37
|
-
### Changed
|
|
38
|
-
- Bump `ses` to `0.15.15` ([#396](https://github.com/MetaMask/snaps-skunkworks/pull/396))
|
|
39
|
-
- Upgraded TypeScript version to minimum 4.4 ([#360](https://github.com/MetaMask/snaps-skunkworks/pull/360))
|
|
40
|
-
- Update template files ([#350](https://github.com/MetaMask/snaps-skunkworks/pull/350))
|
|
41
|
-
|
|
42
|
-
## [0.10.7]
|
|
43
|
-
### Changed
|
|
44
|
-
- **BREAKING:** Bump minimum Node version from 12 to 14 ([#331](https://github.com/MetaMask/snaps-skunkworks/pull/331))
|
|
45
|
-
- Update `mm-snap init` template files ([#330](https://github.com/MetaMask/snaps-skunkworks/pull/330))
|
|
46
|
-
|
|
47
|
-
### Fixed
|
|
48
|
-
- Fix issue where comment stripping would create invalid bundles ([#336](https://github.com/MetaMask/snaps-skunkworks/pull/336))
|
|
49
|
-
|
|
50
|
-
## [0.10.6]
|
|
51
|
-
### Fixed
|
|
52
|
-
- Fix endowment mocking during `mm-snap eval` ([#311](https://github.com/MetaMask/snaps-skunkworks/pull/311))
|
|
53
|
-
|
|
54
|
-
## [0.10.5]
|
|
55
|
-
### Changed
|
|
56
|
-
- No changes this release.
|
|
57
|
-
|
|
58
|
-
## [0.10.3]
|
|
59
|
-
### Fixed
|
|
60
|
-
- Improve dynamic mocking ([#262](https://github.com/MetaMask/snaps-skunkworks/pull/262))
|
|
61
|
-
|
|
62
|
-
## [0.10.2]
|
|
63
|
-
### Fixed
|
|
64
|
-
- Installation failure ([#279](https://github.com/MetaMask/snaps-skunkworks/pull/279))
|
|
65
|
-
- A faulty installation script in a dependency caused the installation of this package to fail.
|
|
66
|
-
|
|
67
|
-
## [0.10.1]
|
|
68
|
-
### Fixed
|
|
69
|
-
- Comment stripping will no longer remove empty block comments in strings ([#276](https://github.com/MetaMask/snaps-skunkworks/pull/276))
|
|
70
|
-
|
|
71
|
-
## [0.10.0]
|
|
72
|
-
### Added
|
|
73
|
-
- **BREAKING:** Transform HTML comments by default ([#237](https://github.com/MetaMask/snaps-skunkworks/pull/237))
|
|
74
|
-
- The strings `<!--` and `-->` will be transformed into `< !--` and `-- >` respectively by default. If these strings appear as operands in an expression or in a string literal, this transform will change the behavior of your program. This behavior was added because these strings are rejected by SES. The behavior can be toggled using the `--transformHtmlComments` option.
|
|
75
|
-
- `--transpiledDeps` flag to `build` and `watch` commands ([#221](https://github.com/MetaMask/snaps-skunkworks/pull/221))
|
|
76
|
-
- This flag allows the user to specify which dependencies will be transpiled at build time if the `--transpilationMode` is `--localAndDeps`.
|
|
77
|
-
- Add CLI usage instructions to readme ([#228](https://github.com/MetaMask/snaps-skunkworks/pull/228))
|
|
78
|
-
- Build process customization ([#251](https://github.com/MetaMask/snaps-skunkworks/pull/251))
|
|
79
|
-
- Builds can now be customized by adding a `bundlerCustomizer` function to `snap.config.js`. See the README for details.
|
|
80
|
-
|
|
81
|
-
### Changed
|
|
82
|
-
- **BREAKING:** Change Snap config file format ([#251](https://github.com/MetaMask/snaps-skunkworks/pull/251))
|
|
83
|
-
- The CLI now expects a file `snap.config.js` instead of `snap.config.json`, with a different structure. See the README for details.
|
|
84
|
-
- **BREAKING:** Strip comments in source code by default ([#243](https://github.com/MetaMask/snaps-skunkworks/pull/243))
|
|
85
|
-
- All comments will now be stripped from snap source code (including dependencies) by default.
|
|
86
|
-
- Enable `--verboseErrors` by default ([#249](https://github.com/MetaMask/snaps-skunkworks/pull/249))
|
|
87
|
-
|
|
88
|
-
### Fixed
|
|
89
|
-
- Comment stripping bug ([#270](https://github.com/MetaMask/snaps-skunkworks/pull/270))
|
|
90
|
-
- Prior to this change, if the `--strip-comments` option was provided to `mm-snap build` and an empty block comment of the form `/**/` appeared anywhere in the source code (including dependencies), the remainder of the string after the empty block comment would be truncated. This was resolved by removing all instances of the string `/**/` from the raw bundle string.
|
|
91
|
-
- In an upcoming release, the string `/**/` will only be removed if it is in fact an empty block comment, and not if it e.g. appears in a string literal.
|
|
92
|
-
- `watch` command parity with `build` command ([#241](https://github.com/MetaMask/snaps-skunkworks/pull/241))
|
|
93
|
-
- The `build` command had received a number of options that were not made available to the `watch` command. They now have the same options.
|
|
94
|
-
- Update dead link in readme ([#240](https://github.com/MetaMask/snaps-skunkworks/pull/240))
|
|
95
|
-
|
|
96
|
-
## [0.9.0]
|
|
97
|
-
### Added
|
|
98
|
-
- Transpilation configuration ([#213](https://github.com/MetaMask/snaps-skunkworks/pull/213))
|
|
99
|
-
- `mm-snap build` now takes a `--transpilationMode` argument which determines what will be transpiled by Babel during building: all source code (including dependencies), local source code only, or nothing.
|
|
100
|
-
|
|
101
|
-
### Fixed
|
|
102
|
-
- `mm-snap build` command when CLI is installed globally ([#216](https://github.com/MetaMask/snaps-skunkworks/pull/216))
|
|
103
|
-
- Update installation command in readme ([#205](https://github.com/MetaMask/snaps-skunkworks/pull/205))
|
|
104
|
-
|
|
105
|
-
## [0.8.0]
|
|
106
|
-
### Changed
|
|
107
|
-
- Update template snap created by `mm-snap init` ([#195](https://github.com/MetaMask/snaps-skunkworks/pull/195))
|
|
108
|
-
- Exit by throwing errors instead of calling `process.exit` ([#190](https://github.com/MetaMask/snaps-skunkworks/pull/190))
|
|
109
|
-
|
|
110
|
-
## [0.7.0]
|
|
111
|
-
### Added
|
|
112
|
-
- ESM support for `mm-snap build` ([#185](https://github.com/MetaMask/snaps-skunkworks/pull/185))
|
|
113
|
-
- The `build` command can now handle snap source code that includes ESM import / export statements. They will be transpiled to their CommonJS equivalents via Babel.
|
|
114
|
-
|
|
115
|
-
### Fixed
|
|
116
|
-
- Fix `mm-snap init` `src` default value ([#186](https://github.com/MetaMask/snaps-skunkworks/pull/186))
|
|
117
|
-
- It now correctly defaults to `src/index.js` instead of just `index.js`.
|
|
118
|
-
- Fix comment stripping ([#189](https://github.com/MetaMask/snaps-skunkworks/pull/189))
|
|
119
|
-
- Comments wouldn't be stripped under certain circumstances due to a RegEx error, details [here](https://github.com/jonschlinkert/strip-comments/pull/49).
|
|
120
|
-
|
|
121
|
-
## [0.6.3]
|
|
122
|
-
### Changed
|
|
123
|
-
- No changes this release.
|
|
124
|
-
|
|
125
|
-
## [0.6.2]
|
|
126
|
-
### Changed
|
|
127
|
-
- No changes this release.
|
|
128
|
-
|
|
129
|
-
## [0.6.1]
|
|
130
|
-
### Fixed
|
|
131
|
-
- `mm-snap init` Snap `snap_confirm` call ([#168](https://github.com/MetaMask/snaps-skunkworks/pull/168))
|
|
132
|
-
- The generated Snap was passing invalid parameters to the method.
|
|
133
|
-
|
|
134
|
-
## [0.6.0]
|
|
135
|
-
### Added
|
|
136
|
-
- Snap SVG icon support ([#163](https://github.com/MetaMask/snaps-skunkworks/pull/163))
|
|
137
|
-
|
|
138
|
-
### Changed
|
|
139
|
-
- **BREAKING:** Support the new Snaps publishing specification ([#140](https://github.com/MetaMask/snaps-skunkworks/pull/140), [#160](https://github.com/MetaMask/snaps-skunkworks/pull/160))
|
|
140
|
-
- This introduces several breaking changes to how Snaps are developed, hosted, and represented at runtime. See [the specification](https://github.com/MetaMask/specifications/blob/d4a5bf5d6990bb5b02a98bd3f95a24ffb28c701c/snaps/publishing.md) and the referenced pull requests for details.
|
|
141
|
-
- **BREAKING:** Rename Snap `name` property to `id` ([#147](https://github.com/MetaMask/snaps-skunkworks/pull/147))
|
|
142
|
-
- **BREAKING:** Update `ses` to version `^0.15.3` ([#159](https://github.com/MetaMask/snaps-skunkworks/pull/159))
|
|
143
|
-
- This will cause behavioral changes for code executed under SES, and may require modifications to code that previously executed without issues.
|
|
144
|
-
|
|
145
|
-
## [0.5.0]
|
|
146
|
-
### Changed
|
|
147
|
-
- **BREAKING:** Convert all TypeScript `interface` declarations to `type` equivalents ([#143](https://github.com/MetaMask/snaps-skunkworks/pull/143))
|
|
148
|
-
|
|
149
|
-
## [0.4.0]
|
|
150
|
-
### Fixed
|
|
151
|
-
- Make Windows-compatible ([#131](https://github.com/MetaMask/snaps-skunkworks/pull/131))
|
|
152
|
-
|
|
153
|
-
## [0.3.1]
|
|
154
|
-
### Changed
|
|
155
|
-
- No changes this release.
|
|
156
|
-
|
|
157
|
-
## [0.3.0]
|
|
158
|
-
### Changed
|
|
159
|
-
- **BREAKING:** Enforce consistent naming for Snaps-related functionality ([#119](https://github.com/MetaMask/snaps-skunkworks/pull/119))
|
|
160
|
-
|
|
161
|
-
## [0.2.2]
|
|
162
|
-
### Fixed
|
|
163
|
-
- Package script issues ([#97](https://github.com/MetaMask/snaps-skunkworks/pull/97), [#98](https://github.com/MetaMask/snaps-skunkworks/pull/98))
|
|
164
|
-
|
|
165
|
-
## [0.2.1]
|
|
166
|
-
### Fixed
|
|
167
|
-
- Snap produced by `mm-snap init` ([#94](https://github.com/MetaMask/snaps-skunkworks/pull/94))
|
|
168
|
-
- The template used to create the "Hello, world!" snap had become outdated due to a build-time bug.
|
|
169
|
-
|
|
170
|
-
## [0.2.0]
|
|
171
|
-
### Changed
|
|
172
|
-
- Update publish scripts ([#92](https://github.com/MetaMask/snaps-skunkworks/pull/92))
|
|
173
|
-
|
|
174
|
-
## [0.1.1]
|
|
175
|
-
### Added
|
|
176
|
-
- Missing publish scripts to new packages
|
|
177
|
-
|
|
178
|
-
## [0.1.0]
|
|
179
|
-
### Changed
|
|
180
|
-
- **BREAKING:** Rename package to `@metamask/snaps-cli` ([#72](https://github.com/MetaMask/snaps-skunkworks/pull/72))
|
|
181
|
-
- This package was previously named [`snaps-cli`](https://npmjs.com/package/snaps-cli).
|
|
182
|
-
- As part of the renaming, and due to the scope of the changes to both this package and MetaMask Snaps generally, its versioning and changelog have been reset. The original changelog can be found [here](https://github.com/MetaMask/snaps-cli/blob/main/CHANGELOG.md).
|
|
183
|
-
|
|
184
|
-
### Removed
|
|
185
|
-
- Example snaps ([#72](https://github.com/MetaMask/snaps-skunkworks/pull/72))
|
|
186
|
-
- The examples now live in their own package, [`@metamask/snap-examples`](https://npmjs.com/package/@metamask/snap-examples).
|
|
187
|
-
|
|
188
|
-
[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.15.0...HEAD
|
|
189
|
-
[0.15.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.14.0...v0.15.0
|
|
190
|
-
[0.14.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.13.0...v0.14.0
|
|
191
|
-
[0.13.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.12.0...v0.13.0
|
|
192
|
-
[0.12.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.11.1...v0.12.0
|
|
193
|
-
[0.11.1]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.11.0...v0.11.1
|
|
194
|
-
[0.11.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.7...v0.11.0
|
|
195
|
-
[0.10.7]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.6...v0.10.7
|
|
196
|
-
[0.10.6]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.5...v0.10.6
|
|
197
|
-
[0.10.5]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.3...v0.10.5
|
|
198
|
-
[0.10.3]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.2...v0.10.3
|
|
199
|
-
[0.10.2]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.1...v0.10.2
|
|
200
|
-
[0.10.1]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.0...v0.10.1
|
|
201
|
-
[0.10.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.9.0...v0.10.0
|
|
202
|
-
[0.9.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.8.0...v0.9.0
|
|
203
|
-
[0.8.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.7.0...v0.8.0
|
|
204
|
-
[0.7.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.6.3...v0.7.0
|
|
205
|
-
[0.6.3]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.6.2...v0.6.3
|
|
206
|
-
[0.6.2]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.6.1...v0.6.2
|
|
207
|
-
[0.6.1]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.6.0...v0.6.1
|
|
208
|
-
[0.6.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.5.0...v0.6.0
|
|
209
|
-
[0.5.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.4.0...v0.5.0
|
|
210
|
-
[0.4.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.3.1...v0.4.0
|
|
211
|
-
[0.3.1]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.3.0...v0.3.1
|
|
212
|
-
[0.3.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.2.2...v0.3.0
|
|
213
|
-
[0.2.2]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.2.1...v0.2.2
|
|
214
|
-
[0.2.1]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.2.0...v0.2.1
|
|
215
|
-
[0.2.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.1.1...v0.2.0
|
|
216
|
-
[0.1.1]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.1.0...v0.1.1
|
|
217
|
-
[0.1.0]: https://github.com/MetaMask/snaps-skunkworks/releases/tag/v0.1.0
|