@k03mad/dice 5.2.0 → 5.2.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.
@@ -14,21 +14,21 @@ jobs:
14
14
  with:
15
15
  fetch-depth: 0
16
16
 
17
- - uses: tj-actions/changed-files@v45
18
- id: changed-files
17
+ - uses: EndBug/version-check@v2
18
+ id: check_pkg_version
19
19
  with:
20
- files: package.json
20
+ diff-search: true
21
21
 
22
- - if: steps.changed-files.outputs.any_changed == 'true'
22
+ - if: steps.check_pkg_version.outputs.changed == 'true'
23
23
  uses: actions/setup-node@v4
24
24
  with:
25
25
  node-version-file: '.nvmrc'
26
26
  registry-url: 'https://registry.npmjs.org'
27
27
 
28
- - if: steps.changed-files.outputs.any_changed == 'true'
28
+ - if: steps.check_pkg_version.outputs.changed == 'true'
29
29
  run: npm run setup
30
30
 
31
- - if: steps.changed-files.outputs.any_changed == 'true'
31
+ - if: steps.check_pkg_version.outputs.changed == 'true'
32
32
  run: npm publish
33
33
  env:
34
34
  NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@k03mad/dice",
3
- "version": "5.2.0",
3
+ "version": "5.2.1",
4
4
  "description": "Dice",
5
5
  "maintainers": [
6
6
  "Kirill Molchanov <k03.mad@gmail.com"
@@ -18,13 +18,13 @@
18
18
  "node": ">=22"
19
19
  },
20
20
  "dependencies": {
21
- "@k03mad/simple-log": "5.1.0",
22
- "chalk": "5.3.0",
21
+ "@k03mad/simple-log": "5.2.0",
22
+ "chalk": "5.4.1",
23
23
  "terminal-image": "3.0.0"
24
24
  },
25
25
  "devDependencies": {
26
- "@k03mad/eslint-config": "28.0.0",
27
- "eslint": "9.16.0",
26
+ "@k03mad/eslint-config": "28.3.0",
27
+ "eslint": "9.17.0",
28
28
  "husky": "9.1.7"
29
29
  },
30
30
  "scripts": {