diff --git a/.github/workflows/npm_test.yml b/.github/workflows/npm_test.yml index e81a012..f262255 100644 --- a/.github/workflows/npm_test.yml +++ b/.github/workflows/npm_test.yml @@ -10,7 +10,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-node@v2 with: - node-version: '21' + node-version: '22' - run: npm install - run: npm test - name: Upload bin folder diff --git a/build.js b/build.js index 93731ce..6505113 100644 --- a/build.js +++ b/build.js @@ -79,6 +79,7 @@ function build() { ['rebuild'].concat(args), { stdio: 'inherit', + shell: true, } ).on('exit', function (err) { if (err) { diff --git a/package-lock.json b/package-lock.json index 6fe021d..35b38a8 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "deasync", - "version": "0.1.28", + "version": "0.1.30", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "deasync", - "version": "0.1.28", + "version": "0.1.30", "hasInstallScript": true, "license": "MIT", "dependencies": { diff --git a/package.json b/package.json index 200f734..2e53536 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "deasync", - "version": "0.1.29", + "version": "0.1.30", "description": "Turns async function into sync via JavaScript wrapper of Node event loop", "main": "index.js", "author": "Vladimir Kurchatkin ",