@vidavidorra/create-project 2.0.62 → 2.0.63
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/dist/content/ci-cd.d.ts
CHANGED
|
@@ -52,8 +52,9 @@ declare const schema: z.ZodObject<{
|
|
|
52
52
|
}, {
|
|
53
53
|
uses: string;
|
|
54
54
|
}>;
|
|
55
|
-
'code-coverage': z.ZodObject<{
|
|
55
|
+
'code-coverage': z.ZodObject<z.objectUtil.extendShape<{
|
|
56
56
|
uses: z.ZodString;
|
|
57
|
+
}, {
|
|
57
58
|
needs: z.ZodTuple<[z.ZodLiteral<"lint">, z.ZodLiteral<"build">, z.ZodLiteral<"test">], null>;
|
|
58
59
|
secrets: z.ZodObject<{
|
|
59
60
|
codecovToken: z.ZodString;
|
|
@@ -62,7 +63,7 @@ declare const schema: z.ZodObject<{
|
|
|
62
63
|
}, {
|
|
63
64
|
codecovToken: string;
|
|
64
65
|
}>;
|
|
65
|
-
}
|
|
66
|
+
}>, "strip", z.ZodTypeAny, {
|
|
66
67
|
uses: string;
|
|
67
68
|
needs: ["lint", "build", "test"];
|
|
68
69
|
secrets: {
|
|
@@ -75,8 +76,9 @@ declare const schema: z.ZodObject<{
|
|
|
75
76
|
codecovToken: string;
|
|
76
77
|
};
|
|
77
78
|
}>;
|
|
78
|
-
release: z.ZodObject<{
|
|
79
|
+
release: z.ZodObject<z.objectUtil.extendShape<{
|
|
79
80
|
uses: z.ZodString;
|
|
81
|
+
}, {
|
|
80
82
|
needs: z.ZodArray<z.ZodUnion<[z.ZodLiteral<"lint-commit-messages">, z.ZodLiteral<"lint">, z.ZodLiteral<"build">, z.ZodLiteral<"test">, z.ZodLiteral<"code-coverage">]>, "many">;
|
|
81
83
|
secrets: z.ZodObject<{
|
|
82
84
|
privateKey: z.ZodString;
|
|
@@ -88,7 +90,7 @@ declare const schema: z.ZodObject<{
|
|
|
88
90
|
privateKey: string;
|
|
89
91
|
npmToken: string;
|
|
90
92
|
}>;
|
|
91
|
-
}
|
|
93
|
+
}>, "strip", z.ZodTypeAny, {
|
|
92
94
|
uses: string;
|
|
93
95
|
needs: ("lint-commit-messages" | "lint" | "build" | "test" | "code-coverage")[];
|
|
94
96
|
secrets: {
|
|
@@ -114,12 +114,12 @@ declare const schema: z.ZodObject<{
|
|
|
114
114
|
engines: {
|
|
115
115
|
node: ">=18";
|
|
116
116
|
};
|
|
117
|
+
files?: ["./dist/**/!(*.test).{js,d.ts,cjs}", ...string[]] | undefined;
|
|
118
|
+
ava?: Record<string, unknown> | undefined;
|
|
117
119
|
keywords?: string[] | undefined;
|
|
118
120
|
private?: boolean | undefined;
|
|
119
121
|
exports?: string | undefined;
|
|
120
122
|
bin?: Record<string, unknown> | undefined;
|
|
121
|
-
files?: ["./dist/**/!(*.test).{js,d.ts,cjs}", ...string[]] | undefined;
|
|
122
|
-
ava?: Record<string, unknown> | undefined;
|
|
123
123
|
c8?: Record<string, unknown> | undefined;
|
|
124
124
|
dependencies?: Record<string, string> | undefined;
|
|
125
125
|
publishConfig?: {
|
|
@@ -158,12 +158,12 @@ declare const schema: z.ZodObject<{
|
|
|
158
158
|
engines: {
|
|
159
159
|
node: ">=18";
|
|
160
160
|
};
|
|
161
|
+
files?: ["./dist/**/!(*.test).{js,d.ts,cjs}", ...string[]] | undefined;
|
|
162
|
+
ava?: Record<string, unknown> | undefined;
|
|
161
163
|
keywords?: string[] | undefined;
|
|
162
164
|
private?: boolean | undefined;
|
|
163
165
|
exports?: string | undefined;
|
|
164
166
|
bin?: Record<string, unknown> | undefined;
|
|
165
|
-
files?: ["./dist/**/!(*.test).{js,d.ts,cjs}", ...string[]] | undefined;
|
|
166
|
-
ava?: Record<string, unknown> | undefined;
|
|
167
167
|
c8?: Record<string, unknown> | undefined;
|
|
168
168
|
dependencies?: Record<string, string> | undefined;
|
|
169
169
|
publishConfig?: {
|
|
@@ -208,12 +208,12 @@ declare class Package extends File {
|
|
|
208
208
|
engines: {
|
|
209
209
|
node: ">=18";
|
|
210
210
|
};
|
|
211
|
+
files?: ["./dist/**/!(*.test).{js,d.ts,cjs}", ...string[]] | undefined;
|
|
212
|
+
ava?: Record<string, unknown> | undefined;
|
|
211
213
|
keywords?: string[] | undefined;
|
|
212
214
|
private?: boolean | undefined;
|
|
213
215
|
exports?: string | undefined;
|
|
214
216
|
bin?: Record<string, unknown> | undefined;
|
|
215
|
-
files?: ["./dist/**/!(*.test).{js,d.ts,cjs}", ...string[]] | undefined;
|
|
216
|
-
ava?: Record<string, unknown> | undefined;
|
|
217
217
|
c8?: Record<string, unknown> | undefined;
|
|
218
218
|
dependencies?: Record<string, string> | undefined;
|
|
219
219
|
publishConfig?: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vidavidorra/create-project",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.63",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Interactively create a GitHub project",
|
|
6
6
|
"keywords": [
|
|
@@ -206,7 +206,7 @@
|
|
|
206
206
|
"typescript": "5.4.5",
|
|
207
207
|
"validate-npm-package-name": "5.0.0",
|
|
208
208
|
"yaml": "2.4.1",
|
|
209
|
-
"zod": "3.
|
|
209
|
+
"zod": "3.23.0"
|
|
210
210
|
},
|
|
211
211
|
"devDependencies": {
|
|
212
212
|
"@ava/typescript": "4.1.0",
|