Skip to content

Commit

Permalink
Merge pull request #2 from nascentxyz/develop
Browse files Browse the repository at this point in the history
v0.6.0
  • Loading branch information
refcell authored Mar 7, 2021
2 parents e817d66 + af29b76 commit c86fb68
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 17 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@ name: Lint
on: [pull_request]

jobs:
e2e-and-unit:
runs-on: ubuntu-16.04
steps:
- uses: actions/checkout@v2
e2e-and-unit:
runs-on: ubuntu-16.04
steps:
- uses: actions/checkout@v2

- name: Install dependencies
run: yarn
- name: Install dependencies
run: yarn

- name: Format
run: yarn format
- name: Format
run: yarn format

- name: Lints with solium
run: yarn lint
- name: Lints with solium
run: yarn lint
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.next
13 changes: 6 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hummingbird",
"version": "0.1.0",
"name": "nascent-hummingbird",
"version": "0.6.0",
"author": "Andreas Bigger <[email protected]>",
"description": "Smart contract interaction tool. Connect and interact with localhost smart contracts.",
"homepage": "https://github.com/nascent/Hummingbird",
Expand All @@ -13,12 +13,11 @@
"start": "next start",
"lint": "prettier --check .",
"format": "prettier --write .",
"test": "jest --config jestconfig.json --rootDir=./src",
"webpack": "webpack --mode production",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"prepare": "yarn build",
"prepublishOnly": "yarn lint",
"preversion": "yarn lint",
"version": "yarn format && git add -A .",
"postversion": "git push && git push --tags",
"reversion": "npm --no-git-tag-version version minor",
"husky": "npx husky install"
Expand Down

1 comment on commit c86fb68

@vercel
Copy link

@vercel vercel bot commented on c86fb68 Mar 7, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.