We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 25aa9a5 commit c18bcf6Copy full SHA for c18bcf6
tools/init.ts
@@ -52,7 +52,7 @@ function deleteFolderRecursive(path: any) {
52
}
53
54
// Note: These should all be relative to the project root directory
55
-const rmDirs = ['.git', 'tools'];
+const rmDirs = ['.git', 'tools', 'CHANGELOG.md'];
56
const rmFiles = ['.all-contributorsrc', '.gitattributes'];
57
const modifyFiles = [
58
'LICENSE',
@@ -146,6 +146,8 @@ function finalize() {
146
['colors', 'prompt', 'replace-in-file', 'ts-node'].forEach((dep) => {
147
delete pkg.devDependencies[dep];
148
});
149
+
150
+ pkg.version = "0.1.0";
151
152
writeFileSync(jsonPackage, JSON.stringify(pkg, null, 2));
153
console.log(green('Postinstall script has been removed'));
0 commit comments