@k03mad/dns-leak 7.3.0 → 7.4.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.
package/.editorconfig CHANGED
@@ -10,3 +10,6 @@ trim_trailing_whitespace = true
10
10
 
11
11
  [*.json]
12
12
  indent_size = 2
13
+
14
+ [*.{yml,yaml}]
15
+ indent_size = 2
@@ -11,11 +11,24 @@ jobs:
11
11
  runs-on: ubuntu-22.04
12
12
  steps:
13
13
  - uses: actions/checkout@v4
14
- - uses: actions/setup-node@v4
14
+ with:
15
+ fetch-depth: 0
16
+
17
+ - uses: tj-actions/changed-files@v44
18
+ id: changed-files
19
+ with:
20
+ files: package.json
21
+
22
+ - if: steps.changed-files.outputs.any_changed == 'true'
23
+ uses: actions/setup-node@v4
15
24
  with:
16
25
  node-version-file: '.nvmrc'
17
26
  registry-url: 'https://registry.npmjs.org'
18
- - run: npm run setup
19
- - run: npm publish
27
+
28
+ - if: steps.changed-files.outputs.any_changed == 'true'
29
+ run: npm run setup
30
+
31
+ - if: steps.changed-files.outputs.any_changed == 'true'
32
+ run: npm publish
20
33
  env:
21
34
  NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@k03mad/dns-leak",
3
- "version": "7.3.0",
3
+ "version": "7.4.1",
4
4
  "description": "DNS leak test",
5
5
  "maintainers": [
6
6
  "Kirill Molchanov <k03.mad@gmail.com"
@@ -18,17 +18,17 @@
18
18
  "node": ">=20"
19
19
  },
20
20
  "dependencies": {
21
- "@k03mad/ip2geo": "7.0.1",
22
- "@k03mad/request": "5.6.1",
23
- "@k03mad/simple-log": "2.1.1",
21
+ "@k03mad/ip2geo": "7.0.3",
22
+ "@k03mad/request": "5.6.3",
23
+ "@k03mad/simple-log": "2.1.2",
24
24
  "chalk": "5.3.0",
25
- "country-locale-map": "1.9.0",
25
+ "country-locale-map": "1.9.4",
26
26
  "nanoid": "5.0.6",
27
27
  "nanoid-dictionary": "5.0.0-beta.1",
28
28
  "ora": "8.0.1"
29
29
  },
30
30
  "devDependencies": {
31
- "@k03mad/eslint-config": "20.3.0",
31
+ "@k03mad/eslint-config": "20.6.0",
32
32
  "eslint": "8.57.0",
33
33
  "husky": "9.0.11"
34
34
  },