@metamask/snaps-webpack-plugin 0.14.0 → 0.15.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/dist/plugin.d.ts +2 -2
- package/package.json +6 -8
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
|
+
## [0.15.0]
|
|
10
|
+
### Fixed
|
|
11
|
+
- Fix some typing issues ([#462](https://github.com/MetaMask/snaps-skunkworks/pull/462))
|
|
12
|
+
|
|
9
13
|
## [0.14.0]
|
|
10
14
|
### Fixed
|
|
11
15
|
- Actually publish package contents ([#449](https://github.com/MetaMask/snaps-skunkworks/pull/449))
|
|
@@ -19,7 +23,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
19
23
|
### Added
|
|
20
24
|
- Initial release ([#420](https://github.com/MetaMask/snaps-skunkworks/pull/420))
|
|
21
25
|
|
|
22
|
-
[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.
|
|
26
|
+
[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.15.0...HEAD
|
|
27
|
+
[0.15.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.14.0...v0.15.0
|
|
23
28
|
[0.14.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.13.0...v0.14.0
|
|
24
29
|
[0.13.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.12.0...v0.13.0
|
|
25
30
|
[0.12.0]: https://github.com/MetaMask/snaps-skunkworks/releases/tag/v0.12.0
|
package/dist/plugin.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { PostProcessOptions } from '@metamask/snap-utils';
|
|
2
|
-
import { Compiler
|
|
2
|
+
import { Compiler } from 'webpack';
|
|
3
3
|
export declare type Options = PostProcessOptions;
|
|
4
|
-
export default class SnapsWebpackPlugin
|
|
4
|
+
export default class SnapsWebpackPlugin {
|
|
5
5
|
readonly options: Partial<Options>;
|
|
6
6
|
constructor(options?: Partial<Options>);
|
|
7
7
|
apply(compiler: Compiler): void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metamask/snaps-webpack-plugin",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.15.0",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"webpack",
|
|
6
6
|
"plugin"
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"dist/"
|
|
15
15
|
],
|
|
16
16
|
"scripts": {
|
|
17
|
-
"test": "jest",
|
|
17
|
+
"test": "jest && yarn posttest",
|
|
18
18
|
"posttest": "jest-it-up",
|
|
19
19
|
"test:ci": "yarn test",
|
|
20
20
|
"lint:eslint": "eslint . --cache --ext js,ts",
|
|
@@ -24,26 +24,24 @@
|
|
|
24
24
|
"lint:changelog": "yarn auto-changelog validate",
|
|
25
25
|
"build:tsc": "tsc --project tsconfig.local.json",
|
|
26
26
|
"build": "yarn build:tsc",
|
|
27
|
-
"build:pre-tsc": "echo 'N/A'",
|
|
28
|
-
"build:post-tsc": "echo 'N/A'",
|
|
29
27
|
"build:clean": "yarn clean && yarn build",
|
|
30
|
-
"clean": "rimraf *.tsbuildinfo dist/*",
|
|
28
|
+
"clean": "rimraf '*.tsbuildinfo' 'dist/*'",
|
|
31
29
|
"publish": "../../scripts/publish-package.sh"
|
|
32
30
|
},
|
|
33
31
|
"dependencies": {
|
|
34
|
-
"@metamask/snap-utils": "^0.
|
|
32
|
+
"@metamask/snap-utils": "^0.15.0",
|
|
35
33
|
"webpack-sources": "^3.2.3"
|
|
36
34
|
},
|
|
37
35
|
"devDependencies": {
|
|
36
|
+
"@metamask/auto-changelog": "^2.6.0",
|
|
38
37
|
"@types/jest": "^27.4.1",
|
|
39
|
-
"@types/webpack": "^5.28.0",
|
|
40
38
|
"@types/webpack-sources": "^3.2.0",
|
|
41
39
|
"jest": "^27.5.1",
|
|
42
40
|
"jest-it-up": "^2.0.0",
|
|
43
41
|
"memfs": "^3.4.1",
|
|
44
42
|
"ts-jest": "^27.1.4",
|
|
45
43
|
"typescript": "^4.4.0",
|
|
46
|
-
"webpack": "^5.72.
|
|
44
|
+
"webpack": "^5.72.1"
|
|
47
45
|
},
|
|
48
46
|
"engines": {
|
|
49
47
|
"node": ">=14.0.0"
|