This repository has been archived by the owner on Jul 22, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
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
6 changed files
with
2,137 additions
and
72 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"scope": true, | ||
"body": true, | ||
"emoji": false, | ||
"lowercaseTypes": true, | ||
"rules": { | ||
"maxChar": 72, | ||
"minChar": 10, | ||
"endWithDot": 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
|
||
✨ Thanks for contributing to the **Solana Block Explorer**! ✨ | ||
|
||
As a contributor, here are the guidelines we would like you to follow: | ||
* Ensure `yarn lint` passes before submitting a Pull Request | ||
* Commits follow the [Angular commit convention](https://github.com/angular/angular.js/blob/master/DEVELOPERS.md#-git-commit-guidelines) | ||
|
||
We use [semantic-release](https://github.com/semantic-release/semantic-release) | ||
to release new versions automatically from the `master` branch: | ||
* Commits of type `fix` will trigger bugfix releases, think `0.0.1` | ||
* Commits of type `feat` will trigger feature releases, think `0.1.0` | ||
* Commits with `BREAKING CHANGE` in body or footer will trigger breaking releases, think `1.0.0` | ||
|
||
All other commit types will trigger no new release. |
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": "@solana/blockexplorer", | ||
"version": "0.0.3", | ||
"version": "0.0.0-development", | ||
"license": "MIT", | ||
"author": "Solana Labs, Inc", | ||
"homepage": "https://solana.com/", | ||
|
@@ -43,6 +43,7 @@ | |
"react-dom": "^16.7.0", | ||
"react-scripts": "2.1.5", | ||
"robust-websocket": "^1.0.0", | ||
"semantic-release": "^15.13.3", | ||
"watch": "^1.0.2" | ||
}, | ||
"bin": { | ||
|
@@ -57,6 +58,7 @@ | |
"lint:watch": "watch 'npm run lint:fix' . --wait=1", | ||
"prepack": "set -ex; npm run lint; npm run build", | ||
"pretty": "prettier --write '{,{api,src}/**/}*.js'", | ||
"re": "semantic-release --repository-url [email protected]:solana-labs/blockexplorer.git", | ||
"start:api": "set -ex; redis-cli ping; babel-node --presets env api/api.js", | ||
"start:ui": "react-scripts start", | ||
"test:ui": "react-scripts test" | ||
|
Oops, something went wrong.