@k03mad/actual-versions 3.13.0 → 3.14.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -12,9 +12,9 @@ jobs:
12
12
  lint:
13
13
  runs-on: ubuntu-latest
14
14
  steps:
15
- - uses: actions/checkout@v4
15
+ - uses: actions/checkout@v5
16
16
  - uses: actions/setup-node@v4
17
17
  with:
18
18
  node-version-file: '.nvmrc'
19
- - run: npm run setup
19
+ - run: npm i
20
20
  - run: npm run lint
@@ -10,7 +10,7 @@ jobs:
10
10
  environment: npm
11
11
  runs-on: ubuntu-latest
12
12
  steps:
13
- - uses: actions/checkout@v4
13
+ - uses: actions/checkout@v5
14
14
  with:
15
15
  fetch-depth: 0
16
16
 
@@ -26,7 +26,7 @@ jobs:
26
26
  registry-url: 'https://registry.npmjs.org'
27
27
 
28
28
  - if: steps.check_pkg_version.outputs.changed == 'true'
29
- run: npm run setup
29
+ run: npm i
30
30
 
31
31
  - if: steps.check_pkg_version.outputs.changed == 'true'
32
32
  run: npm publish
@@ -12,9 +12,9 @@ jobs:
12
12
  test:
13
13
  runs-on: ubuntu-latest
14
14
  steps:
15
- - uses: actions/checkout@v4
15
+ - uses: actions/checkout@v5
16
16
  - uses: actions/setup-node@v4
17
17
  with:
18
18
  node-version-file: '.nvmrc'
19
- - run: npm run setup
19
+ - run: npm i
20
20
  - run: npm run test
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@k03mad/actual-versions",
3
- "version": "3.13.0",
3
+ "version": "3.14.1",
4
4
  "description": "Get actual versions of some tools",
5
5
  "maintainers": [
6
6
  "Kirill Molchanov <k03.mad@gmail.com"
@@ -19,23 +19,19 @@
19
19
  "node": ">=22"
20
20
  },
21
21
  "dependencies": {
22
- "chalk": "5.6.0",
22
+ "chalk": "5.6.2",
23
23
  "table": "6.9.0"
24
24
  },
25
25
  "devDependencies": {
26
- "@k03mad/eslint-config": "29.8.0",
27
- "eslint": "9.34.0",
26
+ "@k03mad/eslint-config": "29.13.1",
27
+ "eslint": "9.36.0",
28
28
  "husky": "9.1.7",
29
29
  "npm-run-all": "4.1.5",
30
- "strip-ansi": "7.1.0"
30
+ "strip-ansi": "7.1.2"
31
31
  },
32
32
  "scripts": {
33
- "lint": "npm run lint:eslint",
34
- "lint:eslint": "eslint ./ --cache",
33
+ "lint": "eslint ./ --cache",
35
34
  "test": "node --test tests/*.js",
36
- "clean": "rm -rf ./node_modules .eslintcache || true",
37
- "setup": "npm run clean && npm run setup:pnpm",
38
- "setup:pnpm": "npm i pnpm -g && pnpm i",
39
35
  "prepare": "husky || true"
40
36
  }
41
37
  }