@metamask/snaps-controllers 0.34.0-flask.1 → 0.34.1-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 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.34.1-flask.1]
10
+ ### Changed
11
+ - No changes this release.
12
+
9
13
  ## [0.34.0-flask.1]
10
14
  ### Changed
11
15
  - **BREAKING:** Rename `targetKey` to `targetName` as part of updating `PermissionController` ([#1450](https://github.com/MetaMask/snaps/pull/1450))
@@ -515,7 +519,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
515
519
  ### Added
516
520
  - First semi-stable release.
517
521
 
518
- [Unreleased]: https://github.com/MetaMask/snaps/compare/v0.34.0-flask.1...HEAD
522
+ [Unreleased]: https://github.com/MetaMask/snaps/compare/v0.34.1-flask.1...HEAD
523
+ [0.34.1-flask.1]: https://github.com/MetaMask/snaps/compare/v0.34.0-flask.1...v0.34.1-flask.1
519
524
  [0.34.0-flask.1]: https://github.com/MetaMask/snaps/compare/v0.33.1-flask.1...v0.34.0-flask.1
520
525
  [0.33.1-flask.1]: https://github.com/MetaMask/snaps/compare/v0.33.0-flask.1...v0.33.1-flask.1
521
526
  [0.33.0-flask.1]: https://github.com/MetaMask/snaps/compare/v0.32.2...v0.33.0-flask.1
@@ -1,3 +1,4 @@
1
+ export * from './location';
1
2
  export * from './SnapController';
2
3
  export * from './endowments';
3
4
  export * from './selectors';
@@ -14,6 +14,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
14
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./location"), exports);
17
18
  __exportStar(require("./SnapController"), exports);
18
19
  __exportStar(require("./endowments"), exports);
19
20
  __exportStar(require("./selectors"), exports);
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/snaps/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,mDAAiC;AACjC,+CAA6B;AAC7B,8CAA4B;AAC5B,6CAA2B;AAC3B,gDAA8B","sourcesContent":["export * from './SnapController';\nexport * from './endowments';\nexport * from './selectors';\nexport * from './registry';\nexport * from './permissions';\n"]}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/snaps/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,6CAA2B;AAC3B,mDAAiC;AACjC,+CAA6B;AAC7B,8CAA4B;AAC5B,6CAA2B;AAC3B,gDAA8B","sourcesContent":["export * from './location';\nexport * from './SnapController';\nexport * from './endowments';\nexport * from './selectors';\nexport * from './registry';\nexport * from './permissions';\n"]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@metamask/snaps-controllers",
3
- "version": "0.34.0-flask.1",
3
+ "version": "0.34.1-flask.1",
4
4
  "description": "Controllers for MetaMask Snaps.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -24,13 +24,14 @@
24
24
  "build": "yarn build:tsc",
25
25
  "build:clean": "yarn clean && yarn build",
26
26
  "clean": "rimraf '*.tsbuildinfo' 'dist/*'",
27
- "lint:eslint": "eslint . --cache --ext js,ts",
28
- "lint:misc": "prettier '**/*.json' '**/*.md' '!CHANGELOG.md' --ignore-path ../../.gitignore",
29
- "lint": "yarn lint:eslint && yarn lint:misc --check",
27
+ "lint:eslint": "eslint . --cache --ext js,ts,jsx,tsx",
28
+ "lint:misc": "prettier --no-error-on-unmatched-pattern --loglevel warn \"**/*.json\" \"**/*.md\" \"**/*.html\" \"!CHANGELOG.md\" --ignore-path ../../.gitignore",
29
+ "lint": "yarn lint:eslint && yarn lint:misc --check && yarn lint:changelog",
30
30
  "lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write",
31
31
  "lint:changelog": "yarn auto-changelog validate",
32
32
  "prepare-manifest:preview": "../../scripts/prepare-preview-manifest.sh",
33
- "publish:preview": "yarn npm publish --tag preview"
33
+ "publish:preview": "yarn npm publish --tag preview",
34
+ "lint:ci": "yarn lint"
34
35
  },
35
36
  "dependencies": {
36
37
  "@metamask/approval-controller": "^3.0.0",
@@ -38,10 +39,10 @@
38
39
  "@metamask/object-multiplex": "^1.2.0",
39
40
  "@metamask/permission-controller": "^4.0.0",
40
41
  "@metamask/post-message-stream": "^6.1.2",
41
- "@metamask/rpc-methods": "^0.34.0-flask.1",
42
- "@metamask/snaps-execution-environments": "^0.34.0-flask.1",
42
+ "@metamask/rpc-methods": "^0.34.1-flask.1",
43
+ "@metamask/snaps-execution-environments": "^0.34.1-flask.1",
43
44
  "@metamask/snaps-registry": "^1.2.1",
44
- "@metamask/snaps-utils": "^0.34.0-flask.1",
45
+ "@metamask/snaps-utils": "^0.34.1-flask.1",
45
46
  "@metamask/utils": "^6.0.0",
46
47
  "@xstate/fsm": "^2.0.0",
47
48
  "concat-stream": "^2.0.0",
@@ -67,6 +68,8 @@
67
68
  "@metamask/eslint-config-typescript": "^11.0.0",
68
69
  "@metamask/template-snap": "^0.7.0",
69
70
  "@peculiar/webcrypto": "^1.3.3",
71
+ "@swc/core": "^1.3.61",
72
+ "@swc/jest": "^0.2.26",
70
73
  "@types/concat-stream": "^2.0.0",
71
74
  "@types/gunzip-maybe": "^1.4.0",
72
75
  "@types/jest": "^27.5.1",
@@ -104,7 +107,6 @@
104
107
  "prettier-plugin-packagejson": "^2.2.11",
105
108
  "rimraf": "^4.1.2",
106
109
  "serve-handler": "^6.1.5",
107
- "ts-jest": "^29.0.2",
108
110
  "ts-node": "^10.9.1",
109
111
  "typescript": "~4.8.4",
110
112
  "vite": "^4.1.4",