@tarsilla/commit-wizard 1.1.2 → 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.
|
|
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.
|
|
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.
|
|
67
|
+
"eslint": "^9.23.0",
|
|
68
68
|
"eslint-config-prettier": "^10.1.1",
|
|
69
|
-
"eslint-import-resolver-typescript": "^4.
|
|
69
|
+
"eslint-import-resolver-typescript": "^4.3.1",
|
|
70
70
|
"eslint-plugin-import": "^2.31.0",
|
|
71
|
-
"eslint-plugin-prettier": "^5.2.
|
|
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.
|
|
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.
|
|
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,11 @@ 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
|
-
|
|
6
|
-
required: true
|
|
5
|
+
required: false
|
|
7
6
|
install:
|
|
8
|
-
|
|
9
|
-
required: true
|
|
7
|
+
required: false
|
|
10
8
|
build:
|
|
11
|
-
|
|
12
|
-
required: true
|
|
9
|
+
required: false
|
|
13
10
|
outputs:
|
|
14
11
|
page_url:
|
|
15
12
|
description: The URL of the page
|