From ebc929971890a2653381b50a632b39f5f76b192e Mon Sep 17 00:00:00 2001 From: petruki <31597636+petruki@users.noreply.github.com> Date: Fri, 29 Aug 2025 19:23:50 -0700 Subject: [PATCH] Bump dev deps chai, env-cmd, eslint and ci sonar action to v5.3.1 --- .github/workflows/master.yml | 2 +- .github/workflows/sonar.yml | 2 +- package.json | 16 ++++++++-------- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml index 62b8713..b7d8015 100644 --- a/.github/workflows/master.yml +++ b/.github/workflows/master.yml @@ -28,7 +28,7 @@ jobs: SWITCHER_API_KEY: ${{ secrets.SWITCHER_API_KEY }} - name: SonarCloud Scan - uses: sonarsource/sonarqube-scan-action@v5.2.0 + uses: sonarsource/sonarqube-scan-action@v5.3.1 env: SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} if: env.SONAR_TOKEN != '' diff --git a/.github/workflows/sonar.yml b/.github/workflows/sonar.yml index 587ecbb..6f81170 100644 --- a/.github/workflows/sonar.yml +++ b/.github/workflows/sonar.yml @@ -44,7 +44,7 @@ jobs: SWITCHER_API_KEY: ${{ secrets.SWITCHER_API_KEY }} - name: SonarCloud Scan - uses: sonarsource/sonarqube-scan-action@v5.2.0 + uses: sonarsource/sonarqube-scan-action@v5.3.1 env: SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} if: env.SONAR_TOKEN != '' diff --git a/package.json b/package.json index 6a015df..55ccc79 100644 --- a/package.json +++ b/package.json @@ -20,10 +20,10 @@ "scripts": { "lint": "eslint ./src/**/*.js ./tests/**/*.js", "test": "npm run coverage \"./tests/**/*.test.js\"", - "test-file": "env-cmd npm run coverage", - "test-local": "env-cmd npm run coverage \"./tests/**/*.test.js\"", + "test-file": "env-cmd -- npm run coverage", + "test-local": "env-cmd -- npm run coverage \"./tests/**/*.test.js\"", "coverage": "c8 --include='src/**/*.js' mocha", - "play": "env-cmd node ./tests/playground/index.js" + "play": "env-cmd -- node ./tests/playground/index.js" }, "files": [ "LICENSE", @@ -32,12 +32,12 @@ ], "devDependencies": { "@babel/eslint-parser": "^7.28.0", - "@typescript-eslint/eslint-plugin": "^8.36.0", - "@typescript-eslint/parser": "^8.36.0", + "@typescript-eslint/eslint-plugin": "^8.41.0", + "@typescript-eslint/parser": "^8.41.0", "c8": "^10.1.3", - "chai": "^5.2.1", - "env-cmd": "^10.1.0", - "eslint": "^9.31.0", + "chai": "^6.0.1", + "env-cmd": "^11.0.0", + "eslint": "^9.34.0", "mocha": "^11.7.1", "mocha-sonarqube-reporter": "^1.0.2", "sinon": "^21.0.0"