@vidavidorra/create-project 4.5.6 → 4.5.8
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.
|
@@ -13,21 +13,21 @@ permissions:
|
|
|
13
13
|
pull-requests: write
|
|
14
14
|
jobs:
|
|
15
15
|
lint-commit-messages:
|
|
16
|
-
uses: vidavidorra/.github/.github/workflows/lint-commit-messages.yml@
|
|
16
|
+
uses: vidavidorra/.github/.github/workflows/lint-commit-messages.yml@debcb8c2c0127b0f1d8af5de4703602dea78dbb4 # v8.0.12
|
|
17
17
|
lint:
|
|
18
|
-
uses: vidavidorra/.github/.github/workflows/node-lint.yml@
|
|
18
|
+
uses: vidavidorra/.github/.github/workflows/node-lint.yml@debcb8c2c0127b0f1d8af5de4703602dea78dbb4 # v8.0.12
|
|
19
19
|
build:
|
|
20
|
-
uses: vidavidorra/.github/.github/workflows/node-build.yml@
|
|
20
|
+
uses: vidavidorra/.github/.github/workflows/node-build.yml@debcb8c2c0127b0f1d8af5de4703602dea78dbb4 # v8.0.12
|
|
21
21
|
test:
|
|
22
|
-
uses: vidavidorra/.github/.github/workflows/node-test.yml@
|
|
22
|
+
uses: vidavidorra/.github/.github/workflows/node-test.yml@debcb8c2c0127b0f1d8af5de4703602dea78dbb4 # v8.0.12
|
|
23
23
|
code-coverage:
|
|
24
|
-
uses: vidavidorra/.github/.github/workflows/node-test-coverage.yml@
|
|
24
|
+
uses: vidavidorra/.github/.github/workflows/node-test-coverage.yml@debcb8c2c0127b0f1d8af5de4703602dea78dbb4 # v8.0.12
|
|
25
25
|
needs:
|
|
26
26
|
- lint
|
|
27
27
|
- build
|
|
28
28
|
- test
|
|
29
29
|
release:
|
|
30
|
-
uses: vidavidorra/.github/.github/workflows/release.yml@
|
|
30
|
+
uses: vidavidorra/.github/.github/workflows/release.yml@debcb8c2c0127b0f1d8af5de4703602dea78dbb4 # v8.0.12
|
|
31
31
|
needs:
|
|
32
32
|
- lint-commit-messages
|
|
33
33
|
- lint
|
|
@@ -36,6 +36,11 @@ declare const schema: z.ZodObject<{
|
|
|
36
36
|
release: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
37
37
|
ava: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
38
38
|
c8: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
39
|
+
overrides: z.ZodObject<{
|
|
40
|
+
'@commitlint/config-conventional': z.ZodObject<{
|
|
41
|
+
'conventional-changelog-conventionalcommits': z.ZodLiteral<">=9.0.0">;
|
|
42
|
+
}, z.core.$strict>;
|
|
43
|
+
}, z.core.$strict>;
|
|
39
44
|
dependencies: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
40
45
|
devDependencies: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
41
46
|
engines: z.ZodObject<{
|
|
@@ -78,6 +83,11 @@ declare class Package extends File {
|
|
|
78
83
|
commitlint: Record<string, unknown>;
|
|
79
84
|
prettier: "@vidavidorra/prettier-config";
|
|
80
85
|
release: Record<string, unknown>;
|
|
86
|
+
overrides: {
|
|
87
|
+
'@commitlint/config-conventional': {
|
|
88
|
+
'conventional-changelog-conventionalcommits': ">=9.0.0";
|
|
89
|
+
};
|
|
90
|
+
};
|
|
81
91
|
devDependencies: Record<string, string>;
|
|
82
92
|
engines: {
|
|
83
93
|
node: ">=22";
|
package/dist/content/package.js
CHANGED
|
@@ -36,6 +36,11 @@ const schema = z.strictObject({
|
|
|
36
36
|
release: z.record(z.string(), z.unknown()),
|
|
37
37
|
ava: z.record(z.string(), z.unknown()).optional(),
|
|
38
38
|
c8: z.record(z.string(), z.unknown()).optional(),
|
|
39
|
+
overrides: z.strictObject({
|
|
40
|
+
'@commitlint/config-conventional': z.strictObject({
|
|
41
|
+
'conventional-changelog-conventionalcommits': z.literal('>=9.0.0'),
|
|
42
|
+
})
|
|
43
|
+
}),
|
|
39
44
|
dependencies: z.record(z.string(), z.string()).optional(),
|
|
40
45
|
devDependencies: z.record(z.string(), z.string()),
|
|
41
46
|
engines: z.strictObject({ node: z.literal('>=22') }),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vidavidorra/create-project",
|
|
3
|
-
"version": "4.5.
|
|
3
|
+
"version": "4.5.8",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Interactively create a GitHub project",
|
|
6
6
|
"keywords": [
|
|
@@ -74,6 +74,11 @@
|
|
|
74
74
|
"text-summary"
|
|
75
75
|
]
|
|
76
76
|
},
|
|
77
|
+
"overrides": {
|
|
78
|
+
"@commitlint/config-conventional": {
|
|
79
|
+
"conventional-changelog-conventionalcommits": ">=9.0.0"
|
|
80
|
+
}
|
|
81
|
+
},
|
|
77
82
|
"dependencies": {
|
|
78
83
|
"@inquirer/prompts": "8.1.0",
|
|
79
84
|
"@vidavidorra/prettier-config": "1.0.4",
|
|
@@ -92,14 +97,14 @@
|
|
|
92
97
|
"@types/validate-npm-package-name": "4.0.2",
|
|
93
98
|
"@vidavidorra/commitlint-config": "7.1.6",
|
|
94
99
|
"@vidavidorra/eslint-config": "1.0.3",
|
|
95
|
-
"@vidavidorra/semantic-release-config": "1.0.
|
|
100
|
+
"@vidavidorra/semantic-release-config": "1.0.4",
|
|
96
101
|
"ava": "6.4.1",
|
|
97
102
|
"c8": "10.1.3",
|
|
98
103
|
"eslint": "9.39.2",
|
|
99
104
|
"husky": "9.1.7",
|
|
100
105
|
"lint-staged": "16.2.7",
|
|
101
106
|
"semantic-release": "25.0.2",
|
|
102
|
-
"sinon": "21.0.
|
|
107
|
+
"sinon": "21.0.1"
|
|
103
108
|
},
|
|
104
109
|
"engines": {
|
|
105
110
|
"node": ">=22"
|