From af29b76847c016e09ff75ee178da5c1f84cc70f6 Mon Sep 17 00:00:00 2001 From: Andreas Bigger Date: Sat, 6 Mar 2021 20:48:36 -0800 Subject: [PATCH] v0.6.0 --- .github/workflows/lint.yml | 20 ++++++++++---------- .prettierignore | 1 + package.json | 13 ++++++------- 3 files changed, 17 insertions(+), 17 deletions(-) create mode 100644 .prettierignore diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 0bff188..22e5e35 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -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 diff --git a/.prettierignore b/.prettierignore new file mode 100644 index 0000000..d0d878e --- /dev/null +++ b/.prettierignore @@ -0,0 +1 @@ +.next \ No newline at end of file diff --git a/package.json b/package.json index 81c6650..4d95efb 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { - "name": "hummingbird", - "version": "0.1.0", + "name": "nascent-hummingbird", + "version": "0.6.0", "author": "Andreas Bigger ", "description": "Smart contract interaction tool. Connect and interact with localhost smart contracts.", "homepage": "https://github.com/nascent/Hummingbird", @@ -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"