-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
193 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@metamask/snap-box", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"private": true, | ||
"description": "", | ||
"homepage": "https://github.com/MetaMask/snap-box#readme", | ||
|
@@ -22,6 +22,7 @@ | |
"lint:eslint": "eslint . --cache --ext js,ts", | ||
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write", | ||
"lint:misc": "prettier '**/*.json' '**/*.md' '!**/CHANGELOG.md' '**/*.yml' --ignore-path .gitignore", | ||
"release": "release-it", | ||
"start": "yarn workspaces foreach --parallel --interlaced --verbose run start", | ||
"test": "yarn workspaces foreach --parallel --verbose run test" | ||
}, | ||
|
@@ -31,6 +32,7 @@ | |
"@metamask/eslint-config-nodejs": "10.0.0", | ||
"@metamask/eslint-config-typescript": "10.0.0", | ||
"@playwright/test": "1.34.3", | ||
"@release-it-plugins/workspaces": "^3.2.0", | ||
"@types/isomorphic-fetch": "0.0.36", | ||
"@types/jest": "29.5.1", | ||
"@typescript-eslint/eslint-plugin": "5.59.7", | ||
|
@@ -45,11 +47,33 @@ | |
"jest": "29.5.0", | ||
"prettier": "2.8.8", | ||
"prettier-plugin-packagejson": "2.4.3", | ||
"release-it": "15.10.3", | ||
"ts-jest": "29.1.0", | ||
"typescript": "4.9.5" | ||
}, | ||
"packageManager": "[email protected]", | ||
"engines": { | ||
"node": ">=16.0.0" | ||
}, | ||
"release-it": { | ||
"plugins": { | ||
"@release-it-plugins/workspaces": { | ||
"workspaces": [ | ||
"packages/snap", | ||
"packages/lib" | ||
] | ||
} | ||
}, | ||
"git": { | ||
"requireCleanWorkingDir": false, | ||
"commitMessage": "chore: release v${version}" | ||
}, | ||
"hooks": { | ||
"after:bump": "yarn build" | ||
}, | ||
"npm": false, | ||
"github": { | ||
"release": true | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,3 @@ | ||
{ | ||
"git": { | ||
"commitMessage": "chore: release v${version}" | ||
}, | ||
"github": { | ||
"release": true | ||
} | ||
"git": false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,3 @@ | ||
{ | ||
"git": { | ||
"commitMessage": "chore: release v${version}" | ||
}, | ||
"github": { | ||
"release": true | ||
} | ||
"git": false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "casper-manager", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "Sign deploys and messages for the Casper Blockchain with your Casper account(s).", | ||
"repository": { | ||
"type": "git", | ||
|
@@ -22,7 +22,6 @@ | |
"lint:eslint": "eslint . --cache --ext js,ts", | ||
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write", | ||
"lint:misc": "prettier '**/*.json' '**/*.md' '!CHANGELOG.md' --ignore-path .gitignore", | ||
"release": "release-it", | ||
"serve": "mm-snap serve -p 9000", | ||
"start": "mm-snap watch -p 9000", | ||
"test": "jest --silent --runInBand" | ||
|
@@ -59,7 +58,6 @@ | |
"playwright": "1.34.3", | ||
"prettier": "2.8.8", | ||
"prettier-plugin-packagejson": "2.4.3", | ||
"release-it": "15.10.3", | ||
"rimraf": "3.0.2", | ||
"ts-results": "npm:@casperlabs/[email protected]", | ||
"typescript": "4.9.5" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.