Skip to content

Commit

Permalink
Enforce consistent naming for Snaps (#119)
Browse files Browse the repository at this point in the history
This PR enforces consistent naming for Snaps everywhere. It also makes some minor edits to package scripts.
  • Loading branch information
rekmarks authored Nov 5, 2021
1 parent e288a6a commit 4bc5154
Show file tree
Hide file tree
Showing 47 changed files with 1,865 additions and 1,897 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"build:tsc": "tsc --build --force tsconfig.json",
"build:post-tsc": "yarn workspace @metamask/snap-workers run build:post-tsc",
"build": "yarn build:tsc && yarn build:post-tsc",
"build:clean": "yarn workspaces run build:clean",
"build:clean": "yarn workspaces run clean && yarn build",
"test": "yarn workspaces run test",
"test:ci": "yarn workspaces run test:ci"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/controllers/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [0.2.2]
### Added
- Added plugin error state ([#96](https://github.com/MetaMask/snaps-skunkworks/pull/96))
- Added snap error state ([#96](https://github.com/MetaMask/snaps-skunkworks/pull/96))

### Fixed
- Package script issues ([#97](https://github.com/MetaMask/snaps-skunkworks/pull/97), [#98](https://github.com/MetaMask/snaps-skunkworks/pull/98))
Expand Down
3 changes: 2 additions & 1 deletion packages/controllers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@
"test": "jest",
"test:ci": "./test-ci.sh",
"build": "tsc --project tsconfig.local.json",
"build:clean": "yarn rimraf dist/* && yarn build",
"build:clean": "yarn clean && yarn build",
"clean": "rimraf dist/*",
"lint:eslint": "eslint . --cache --ext js,ts",
"lint:misc": "prettier '**/*.json' '**/*.md' '!CHANGELOG.md' --ignore-path ../../.gitignore",
"lint": "yarn lint:eslint && yarn lint:misc --check",
Expand Down
2 changes: 1 addition & 1 deletion packages/controllers/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export * from './services/WebWorkerExecutionEnvironmentService';
export * from './plugins/PluginController';
export * from './snaps/SnapController';
export * from './resource/ExternalResourceController';
export * from './services/ExecutionEnvironmentService';
Loading

0 comments on commit 4bc5154

Please sign in to comment.