From e50ee05ac77a3a8e4a3a598d2b3186de25ad8503 Mon Sep 17 00:00:00 2001 From: Stoyan Dimitrov Date: Tue, 20 Feb 2024 17:55:55 -0500 Subject: [PATCH] No node (#12) * update jest lib * adding increment and toHexNonce methods and tests, adding more readme * adding 0x check * remove nvmrc for node setting * update to 0.0.8 for release * update node for github actions * remove engines from package * move nvmrc * incrementing version --- .github/workflows/ci.yaml | 6 +++--- .github/.nvmrc => .nvmrc | 0 package.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) rename .github/.nvmrc => .nvmrc (100%) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index f622281..56a5b42 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -9,7 +9,7 @@ jobs: - name: Use Node.js uses: actions/setup-node@v3 with: - node-version-file: ".github/.nvmrc" + node-version-file: ".nvmrc" cache: "npm" - run: yarn install - run: yarn format:check @@ -20,7 +20,7 @@ jobs: - name: Use Node.js uses: actions/setup-node@v3 with: - node-version-file: ".github/.nvmrc" + node-version-file: ".nvmrc" cache: "npm" - run: yarn install - run: yarn build @@ -31,7 +31,7 @@ jobs: - name: Use Node.js uses: actions/setup-node@v3 with: - node-version-file: ".github/.nvmrc" + node-version-file: ".nvmrc" cache: "npm" - run: yarn install - run: yarn test diff --git a/.github/.nvmrc b/.nvmrc similarity index 100% rename from .github/.nvmrc rename to .nvmrc diff --git a/package.json b/package.json index e7388b8..213cba5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@beamnetwork/nonce-2d", - "version": "0.0.9", + "version": "0.0.10", "description": "", "main": "./dist/index.js", "module": "./dist/index.mjs",