We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 799e7b4 commit a33ed38Copy full SHA for a33ed38
bin/install.js
@@ -52,7 +52,7 @@ async function main() {
52
execSync('npx rimraf ./.git'); // delete .git folder
53
54
fs.unlinkSync(path.join(projectPath, 'bin', 'install.js'));
55
- fs.rmdirSync(path.join(projectPath, 'bin'), { recursive: true });
+ fs.rmSync(path.join(projectPath, 'bin'), { recursive: true });
56
57
// end notes
58
console.log('\n');
@@ -63,6 +63,7 @@ async function main() {
63
console.log(` cd ${projectName}`);
64
console.log();
65
console.log('Enjoy your typescript lambda app, which will provide you some ready-made features!');
66
+ console.log('🎉 Tada...');
67
68
} catch (error) {
69
console.log(error);
0 commit comments