From 799d6a6e5daad08f740b6ce9731d94737125f3f3 Mon Sep 17 00:00:00 2001 From: Nicolas Vanhoren Date: Mon, 14 Dec 2020 22:39:26 +0100 Subject: [PATCH] 0.1.2 --- .github/workflows/node.js.yml | 2 +- .github/workflows/npm-publish.yml | 4 ++-- package-lock.json | 4 ++-- package.json | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index 6c48153..79fafa2 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -25,5 +25,5 @@ jobs: with: node-version: ${{ matrix.node-version }} - run: npm ci - - run: npm run build --if-present + - run: npm run build - run: npm test diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index 2f15584..6119781 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -16,7 +16,7 @@ jobs: with: node-version: 15 - run: npm ci - - run: npm run build --if-present + - run: npm run build - run: npm test publish-npm: @@ -29,7 +29,7 @@ jobs: node-version: 15 registry-url: https://registry.npmjs.org/ - run: npm ci - - run: npm build + - run: npm run build - run: npm publish env: NODE_AUTH_TOKEN: ${{secrets.npm_token}} diff --git a/package-lock.json b/package-lock.json index 634e3bf..2e0856f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,11 +1,11 @@ { "name": "modern-async", - "version": "0.1.1", + "version": "0.1.2", "lockfileVersion": 2, "requires": true, "packages": { "": { - "version": "0.1.1", + "version": "0.1.2", "license": "MIT", "dependencies": { "nanoassert": "^2.0.0" diff --git a/package.json b/package.json index 4f48fdd..4bd9670 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "modern-async", - "version": "0.1.1", + "version": "0.1.2", "description": "A modern tooling library for asynchronous operations using async/await and promises", "type": "module", "main": "dist/modern-async.cjs",