@tarsilla/commit-wizard 1.1.1 → 1.1.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tarsilla/commit-wizard",
3
- "version": "1.1.1",
3
+ "version": "1.1.3",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -58,24 +58,24 @@
58
58
  "inquirer": "^8.2.6"
59
59
  },
60
60
  "devDependencies": {
61
- "@eslint/js": "^9.22.0",
61
+ "@eslint/js": "^9.23.0",
62
62
  "@rollup/plugin-commonjs": "^28.0.3",
63
63
  "@rollup/plugin-node-resolve": "^16.0.1",
64
64
  "@rollup/plugin-swc": "^0.4.0",
65
65
  "@rollup/plugin-terser": "^0.4.4",
66
66
  "@types/inquirer": "^8.2.10",
67
- "eslint": "^9.22.0",
67
+ "eslint": "^9.23.0",
68
68
  "eslint-config-prettier": "^10.1.1",
69
- "eslint-import-resolver-typescript": "^4.2.2",
69
+ "eslint-import-resolver-typescript": "^4.3.1",
70
70
  "eslint-plugin-import": "^2.31.0",
71
- "eslint-plugin-prettier": "^5.2.3",
71
+ "eslint-plugin-prettier": "^5.2.5",
72
72
  "eslint-plugin-unused-imports": "^4.1.4",
73
73
  "husky": "^9.1.7",
74
74
  "prettier": "^3.5.3",
75
- "rollup": "^4.36.0",
75
+ "rollup": "^4.38.0",
76
76
  "rollup-plugin-dts": "^6.2.1",
77
77
  "rollup-plugin-peer-deps-external": "^2.2.4",
78
78
  "typescript": "^5.8.2",
79
- "typescript-eslint": "^8.27.0"
79
+ "typescript-eslint": "^8.29.0"
80
80
  }
81
81
  }
@@ -2,13 +2,10 @@ name: Deploy to Github Pages
2
2
  description: Github action to deploy to github pages as part of a github workflow for NodeJS projects
3
3
  inputs:
4
4
  path:
5
- description: Specifies the path of the static assets after building
6
5
  required: true
7
6
  install:
8
- description: Specifies the command to run the installation.
9
7
  required: true
10
8
  build:
11
- description: Specifies the command to run after install for the build
12
9
  required: true
13
10
  outputs:
14
11
  page_url:
@@ -2,14 +2,15 @@ name: Deploy Storybook to Github Pages
2
2
  description: Github action to deploy storybook to github pages as part of a github workflow for NodeJS projects
3
3
  inputs:
4
4
  path:
5
- description: Specifies the path of the static assets after building
6
- required: true
5
+ required: false
7
6
  install:
8
- description: Specifies the command to run the installation.
9
- required: true
7
+ required: false
10
8
  build:
11
- description: Specifies the command to run after install for the build
12
- required: true
9
+ required: false
10
+ outputs:
11
+ page_url:
12
+ description: The URL of the page
13
+ value: ${{ steps.deploy.outputs.page_url }}
13
14
  runs:
14
15
  using: composite
15
16
  steps:
@@ -18,7 +19,8 @@ runs:
18
19
  with:
19
20
  node-version: 22.x
20
21
  registry-url: https://registry.npmjs.org
21
- - name: Deploy Storybook to Github Pages
22
+ - id: deploy
23
+ name: Deploy Storybook to Github Pages
22
24
  uses: ./src/github-actions/deploy/github-pages/base
23
25
  with:
24
26
  path: storybook-static