@vidavidorra/create-project 4.4.5 → 4.5.1
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/package.d.ts +0 -2
- package/dist/content/package.js +1 -5
- package/package.json +4 -127
|
@@ -44,7 +44,6 @@ declare const schema: z.ZodObject<{
|
|
|
44
44
|
publishConfig: z.ZodOptional<z.ZodObject<{
|
|
45
45
|
access: z.ZodLiteral<"public">;
|
|
46
46
|
}, z.core.$strict>>;
|
|
47
|
-
overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
48
47
|
}, z.core.$strict>;
|
|
49
48
|
type PackageJson = z.infer<typeof schema>;
|
|
50
49
|
declare class Package extends File {
|
|
@@ -94,7 +93,6 @@ declare class Package extends File {
|
|
|
94
93
|
publishConfig?: {
|
|
95
94
|
access: "public";
|
|
96
95
|
} | undefined;
|
|
97
|
-
overrides?: Record<string, unknown> | undefined;
|
|
98
96
|
};
|
|
99
97
|
process(): this;
|
|
100
98
|
private get gitHubUrl();
|
package/dist/content/package.js
CHANGED
|
@@ -40,7 +40,6 @@ const schema = z.strictObject({
|
|
|
40
40
|
devDependencies: z.record(z.string(), z.string()),
|
|
41
41
|
engines: z.strictObject({ node: z.literal('>=22') }),
|
|
42
42
|
publishConfig: z.strictObject({ access: z.literal('public') }).optional(),
|
|
43
|
-
overrides: z.record(z.string(), z.unknown()).optional(),
|
|
44
43
|
});
|
|
45
44
|
class Package extends File {
|
|
46
45
|
_fullPackage;
|
|
@@ -69,7 +68,6 @@ class Package extends File {
|
|
|
69
68
|
delete this._package.bin;
|
|
70
69
|
delete this._package.dependencies;
|
|
71
70
|
delete this._package.scripts.postinstall;
|
|
72
|
-
delete this._package.overrides;
|
|
73
71
|
if (this._options.public) {
|
|
74
72
|
delete this._package.private;
|
|
75
73
|
}
|
|
@@ -79,12 +77,10 @@ class Package extends File {
|
|
|
79
77
|
}
|
|
80
78
|
const devDependencies = [
|
|
81
79
|
'@commitlint/cli',
|
|
82
|
-
'@semantic-release/changelog',
|
|
83
|
-
'@semantic-release/exec',
|
|
84
|
-
'@semantic-release/git',
|
|
85
80
|
'@vidavidorra/commitlint-config',
|
|
86
81
|
'@vidavidorra/eslint-config',
|
|
87
82
|
'@vidavidorra/prettier-config',
|
|
83
|
+
'@vidavidorra/semantic-release-config',
|
|
88
84
|
'eslint',
|
|
89
85
|
'husky',
|
|
90
86
|
'lint-staged',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vidavidorra/create-project",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.5.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Interactively create a GitHub project",
|
|
6
6
|
"keywords": [
|
|
@@ -49,125 +49,7 @@
|
|
|
49
49
|
},
|
|
50
50
|
"prettier": "@vidavidorra/prettier-config",
|
|
51
51
|
"release": {
|
|
52
|
-
"
|
|
53
|
-
"main",
|
|
54
|
-
{
|
|
55
|
-
"name": "beta",
|
|
56
|
-
"prerelease": true
|
|
57
|
-
}
|
|
58
|
-
],
|
|
59
|
-
"plugins": [
|
|
60
|
-
[
|
|
61
|
-
"@semantic-release/commit-analyzer",
|
|
62
|
-
{
|
|
63
|
-
"releaseRules": [
|
|
64
|
-
{
|
|
65
|
-
"type": "perf",
|
|
66
|
-
"release": "patch"
|
|
67
|
-
},
|
|
68
|
-
{
|
|
69
|
-
"type": "revert",
|
|
70
|
-
"release": "patch"
|
|
71
|
-
},
|
|
72
|
-
{
|
|
73
|
-
"type": "docs",
|
|
74
|
-
"release": "patch"
|
|
75
|
-
},
|
|
76
|
-
{
|
|
77
|
-
"type": "chore",
|
|
78
|
-
"release": false
|
|
79
|
-
},
|
|
80
|
-
{
|
|
81
|
-
"type": "refactor",
|
|
82
|
-
"release": "patch"
|
|
83
|
-
},
|
|
84
|
-
{
|
|
85
|
-
"type": "test",
|
|
86
|
-
"release": "patch"
|
|
87
|
-
},
|
|
88
|
-
{
|
|
89
|
-
"type": "build",
|
|
90
|
-
"release": "patch"
|
|
91
|
-
},
|
|
92
|
-
{
|
|
93
|
-
"type": "ci",
|
|
94
|
-
"release": "patch"
|
|
95
|
-
}
|
|
96
|
-
]
|
|
97
|
-
}
|
|
98
|
-
],
|
|
99
|
-
"@semantic-release/release-notes-generator",
|
|
100
|
-
"@semantic-release/changelog",
|
|
101
|
-
[
|
|
102
|
-
"@semantic-release/exec",
|
|
103
|
-
{
|
|
104
|
-
"prepareCmd": "prettier --write CHANGELOG.md"
|
|
105
|
-
}
|
|
106
|
-
],
|
|
107
|
-
[
|
|
108
|
-
"@semantic-release/npm",
|
|
109
|
-
{
|
|
110
|
-
"tarballDir": "dist"
|
|
111
|
-
}
|
|
112
|
-
],
|
|
113
|
-
"@semantic-release/git",
|
|
114
|
-
[
|
|
115
|
-
"@semantic-release/github",
|
|
116
|
-
{
|
|
117
|
-
"assets": "dist/*.tgz"
|
|
118
|
-
}
|
|
119
|
-
]
|
|
120
|
-
],
|
|
121
|
-
"preset": "conventionalcommits",
|
|
122
|
-
"presetConfig": {
|
|
123
|
-
"types": [
|
|
124
|
-
{
|
|
125
|
-
"type": "feat",
|
|
126
|
-
"section": "Features"
|
|
127
|
-
},
|
|
128
|
-
{
|
|
129
|
-
"type": "fix",
|
|
130
|
-
"section": "Bug Fixes"
|
|
131
|
-
},
|
|
132
|
-
{
|
|
133
|
-
"type": "perf",
|
|
134
|
-
"section": "Performance Improvements"
|
|
135
|
-
},
|
|
136
|
-
{
|
|
137
|
-
"type": "revert",
|
|
138
|
-
"section": "Reverts"
|
|
139
|
-
},
|
|
140
|
-
{
|
|
141
|
-
"type": "docs",
|
|
142
|
-
"section": "Documentation"
|
|
143
|
-
},
|
|
144
|
-
{
|
|
145
|
-
"type": "style",
|
|
146
|
-
"section": "Styles"
|
|
147
|
-
},
|
|
148
|
-
{
|
|
149
|
-
"type": "chore",
|
|
150
|
-
"section": "Miscellaneous Chores",
|
|
151
|
-
"hidden": true
|
|
152
|
-
},
|
|
153
|
-
{
|
|
154
|
-
"type": "refactor",
|
|
155
|
-
"section": "Code Refactoring"
|
|
156
|
-
},
|
|
157
|
-
{
|
|
158
|
-
"type": "test",
|
|
159
|
-
"section": "Tests"
|
|
160
|
-
},
|
|
161
|
-
{
|
|
162
|
-
"type": "build",
|
|
163
|
-
"section": "Build System"
|
|
164
|
-
},
|
|
165
|
-
{
|
|
166
|
-
"type": "ci",
|
|
167
|
-
"section": "Continuous Integration"
|
|
168
|
-
}
|
|
169
|
-
]
|
|
170
|
-
}
|
|
52
|
+
"extends": "@vidavidorra/semantic-release-config"
|
|
171
53
|
},
|
|
172
54
|
"ava": {
|
|
173
55
|
"files": [
|
|
@@ -205,14 +87,12 @@
|
|
|
205
87
|
"devDependencies": {
|
|
206
88
|
"@ava/typescript": "6.0.0",
|
|
207
89
|
"@commitlint/cli": "20.2.0",
|
|
208
|
-
"@semantic-release/changelog": "6.0.3",
|
|
209
|
-
"@semantic-release/exec": "7.1.0",
|
|
210
|
-
"@semantic-release/git": "10.0.1",
|
|
211
90
|
"@types/node": "24.10.4",
|
|
212
91
|
"@types/sinon": "21.0.0",
|
|
213
92
|
"@types/validate-npm-package-name": "4.0.2",
|
|
214
93
|
"@vidavidorra/commitlint-config": "7.1.6",
|
|
215
|
-
"@vidavidorra/eslint-config": "1.0.
|
|
94
|
+
"@vidavidorra/eslint-config": "1.0.3",
|
|
95
|
+
"@vidavidorra/semantic-release-config": "1.0.1",
|
|
216
96
|
"ava": "6.4.1",
|
|
217
97
|
"c8": "10.1.3",
|
|
218
98
|
"eslint": "9.39.2",
|
|
@@ -226,8 +106,5 @@
|
|
|
226
106
|
},
|
|
227
107
|
"publishConfig": {
|
|
228
108
|
"access": "public"
|
|
229
|
-
},
|
|
230
|
-
"overrides": {
|
|
231
|
-
"conventional-changelog-conventionalcommits": ">= 8.0.0"
|
|
232
109
|
}
|
|
233
110
|
}
|