@4s1/conventional-commit-creator 3.11.0 → 3.13.0
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 +14 -13
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@4s1/conventional-commit-creator",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.13.0",
|
|
4
4
|
"description": "Conventional Commit Creator",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"conventional commit",
|
|
@@ -28,20 +28,20 @@
|
|
|
28
28
|
],
|
|
29
29
|
"prettier": "@4s1/eslint-config",
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@inquirer/confirm": "
|
|
32
|
-
"@inquirer/input": "
|
|
33
|
-
"@inquirer/select": "
|
|
31
|
+
"@inquirer/confirm": "4.0.1",
|
|
32
|
+
"@inquirer/input": "3.0.1",
|
|
33
|
+
"@inquirer/select": "3.0.1"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
|
-
"@4s1/eslint-config": "
|
|
36
|
+
"@4s1/eslint-config": "8.0.0",
|
|
37
37
|
"@4s1/ts-config": "8.1.0",
|
|
38
|
-
"@types/node": "20.
|
|
38
|
+
"@types/node": "20.16.5",
|
|
39
39
|
"@types/prompts": "2.4.9",
|
|
40
|
-
"eslint": "
|
|
41
|
-
"glob": "
|
|
42
|
-
"prettier": "3.3.
|
|
43
|
-
"tsx": "4.
|
|
44
|
-
"typescript": "5.4
|
|
40
|
+
"eslint": "9.11.1",
|
|
41
|
+
"glob": "11.0.0",
|
|
42
|
+
"prettier": "3.3.3",
|
|
43
|
+
"tsx": "4.19.1",
|
|
44
|
+
"typescript": "5.5.4"
|
|
45
45
|
},
|
|
46
46
|
"publishConfig": {
|
|
47
47
|
"access": "public"
|
|
@@ -51,12 +51,13 @@
|
|
|
51
51
|
"build:dev": "rm -rf dist && tsc --project tsconfig.dev.json",
|
|
52
52
|
"format": "prettier --write .",
|
|
53
53
|
"lbt": "pnpm run lint && pnpm run build && pnpm run test",
|
|
54
|
-
"lint": "eslint
|
|
54
|
+
"lint": "eslint src/ && prettier --check .",
|
|
55
55
|
"start": "node dist/index.js",
|
|
56
56
|
"start:dev": "tsx src/index.ts",
|
|
57
57
|
"test": "glob -c \"node --test --import tsx/esm\" \"./src/**/*.spec.ts\"",
|
|
58
58
|
"test:watch": "pnpm run test --watch",
|
|
59
59
|
"preversion": "pnpm run lbt",
|
|
60
|
-
"postversion": "git push && git push --follow-tags"
|
|
60
|
+
"postversion": "git push && git push --follow-tags",
|
|
61
|
+
"lint:fix": "eslint --fix src/ && prettier --write ."
|
|
61
62
|
}
|
|
62
63
|
}
|