From 2eeffa7c91f2c29fae86e229f6c52a1fe90c38dd Mon Sep 17 00:00:00 2001 From: coderaiser Date: Wed, 13 Dec 2023 11:55:01 +0200 Subject: [PATCH] chore: github: install: bun -> npm --- .github/workflows/nodejs-pr.yml | 2 +- .github/workflows/nodejs.yml | 2 +- .putout.json | 5 +++-- package.json | 1 + 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/nodejs-pr.yml b/.github/workflows/nodejs-pr.yml index 4e4e08e..67f8f24 100644 --- a/.github/workflows/nodejs-pr.yml +++ b/.github/workflows/nodejs-pr.yml @@ -20,7 +20,7 @@ jobs: with: node-version: ${{ matrix.node-version }} - name: Install - run: bun i --no-save + run: npm i - name: Lint run: npm run lint - name: Install Rust diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 5b04543..3436b20 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -25,7 +25,7 @@ jobs: with: node-version: ${{ matrix.node-version }} - name: Install - run: bun i --no-save + run: npm i - name: Lint run: npm run fix:lint - name: Install Rust diff --git a/.putout.json b/.putout.json index 7d30aee..66ae0ee 100644 --- a/.putout.json +++ b/.putout.json @@ -1,8 +1,9 @@ { "rules": { - "putout/apply-namespace-specifier": "off" + "putout/apply-namespace-specifier": "off", + "github/convert-npm-to-bun": "off" }, "ignore": [ "examples/*.js" ] -} +} \ No newline at end of file diff --git a/package.json b/package.json index b772ee4..9f087fe 100644 --- a/package.json +++ b/package.json @@ -42,6 +42,7 @@ }, "license": "MIT", "devDependencies": { + "@babel/core": "^8.0.0-alpha.5", "@cloudcmd/stub": "^4.0.1", "@putout/test": "^8.0.0", "c8": "^8.0.0",