react-hook-form-rules 1.5.7 → 1.5.9

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.
@@ -30,13 +30,15 @@ jobs:
30
30
  uses: actions/setup-node@v4
31
31
  with:
32
32
  node-version: 20
33
- registry-url: "https://registry.npmjs.org/"
34
33
 
35
34
  - name: Install dependencies
36
35
  run: npm ci
37
36
 
38
37
  - name: Authenticate with npm
39
38
  run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc
39
+
40
+ - name: Authenticate with GitHub Packages
41
+ run: echo "@chopperqt:registry=https://npm.pkg.github.com/" >> ~/.npmrc && echo "//npm.pkg.github.com/:_authToken=${{ secrets.GH_PACKAGES_TOKEN }}" >> ~/.npmrc
40
42
 
41
43
  - name: Check .npmrc
42
44
  run: npm run check-npmrc
@@ -46,9 +48,6 @@ jobs:
46
48
  echo "NPM_TOKEN=${{ secrets.NPM_TOKEN }}"
47
49
  echo "GH_PACKAGES_TOKEN=${{ secrets.GH_PACKAGES_TOKEN }}"
48
50
  echo $NPM_TOKEN | wc -c
49
-
50
- - name: Authenticate with GitHub Packages
51
- run: echo "@chopperqt:registry=https://npm.pkg.github.com/" >> ~/.npmrc && echo "//npm.pkg.github.com/:_authToken=${{ secrets.GH_PACKAGES_TOKEN }}" >> ~/.npmrc
52
51
 
53
52
  - name: Run semantic-release
54
53
  run: npx semantic-release
package/CHANGELOG.md CHANGED
@@ -1,3 +1,16 @@
1
+ ## [1.5.9](https://github.com/chopperqt/react-hook-form-rules/compare/v1.5.8...v1.5.9) (2025-03-15)
2
+
3
+ ### 🔥 Code Refactoring
4
+
5
+ * доработки конфига ([325f134](https://github.com/chopperqt/react-hook-form-rules/commit/325f134af712efd9159226b8f2778812467e7783))
6
+ * незначительные правки ([86c9616](https://github.com/chopperqt/react-hook-form-rules/commit/86c961681f10984c2da58e72c4a0be96539e264a))
7
+
8
+ ## [1.5.8](https://github.com/chopperqt/react-hook-form-rules/compare/v1.5.7...v1.5.8) (2025-03-15)
9
+
10
+ ### 🔥 Code Refactoring
11
+
12
+ * незначительные правки ([d388b0a](https://github.com/chopperqt/react-hook-form-rules/commit/d388b0a808884c29096c23eb13be16420117c100))
13
+
1
14
  ## [1.5.7](https://github.com/chopperqt/react-hook-form-rules/compare/v1.5.6...v1.5.7) (2025-03-15)
2
15
 
3
16
  ### 🔥 Code Refactoring
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-hook-form-rules",
3
- "version": "1.5.7",
3
+ "version": "1.5.9",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -51,17 +51,21 @@ module.exports = {
51
51
  [
52
52
  "@semantic-release/npm",
53
53
  {
54
- "registry": "https://registry.npmjs.org/",
55
54
  "npmPublish": true,
56
55
  "pkgRoot": ".",
56
+ "publishConfig": {
57
+ "registry": "https://registry.npmjs.org/",
58
+ }
57
59
  }
58
60
  ],
59
61
  [
60
62
  "@semantic-release/npm",
61
63
  {
62
- "registry": "https://npm.pkg.github.com/",
63
64
  "npmPublish": false,
64
65
  "pkgRoot": ".",
66
+ "publishConfig": {
67
+ "registry": "https://npm.pkg.github.com/",
68
+ }
65
69
  }
66
70
  ],
67
71
  [