@shakerquiz/url 0.0.52 → 0.0.53

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.
@@ -1,6 +1,7 @@
1
1
  name: Publish Package
2
2
 
3
3
  on:
4
+ workflow_dispatch:
4
5
  pull_request:
5
6
  types: [ closed ]
6
7
  branches:
@@ -13,7 +14,9 @@ permissions:
13
14
  jobs:
14
15
  publish:
15
16
  runs-on: ubuntu-latest
16
- if: github.event.pull_request.merged == true
17
+ if: |
18
+ github.event_name == 'workflow_dispatch' ||
19
+ github.event.pull_request.merged == true
17
20
  steps:
18
21
  - uses: actions/checkout@v5
19
22
  with:
@@ -27,4 +30,5 @@ jobs:
27
30
  - run: npm version patch
28
31
  - run: npm ci
29
32
  - run: npm publish
33
+ - run: git commit -am "Commit autogenerated output" || true
30
34
  - run: git push --follow-tags
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "@shakerquiz/url",
4
- "version": "0.0.52",
4
+ "version": "0.0.53",
5
5
  "author": "yurkimus <yurkimus@gmail.com>",
6
6
  "license": "ISC",
7
7
  "repository": {
@@ -15,7 +15,7 @@
15
15
  "./*": "./source/*/index.js"
16
16
  },
17
17
  "dependencies": {
18
- "@shakerquiz/utilities": "4.0.26"
18
+ "@shakerquiz/utilities": "4.0.27"
19
19
  },
20
20
  "devDependencies": {
21
21
  "@types/bun": "1.3.6",