Skip to content

Commit a33ed38

Browse files
authored
minor changes on npm script (#5)
1 parent 799e7b4 commit a33ed38

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

bin/install.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ async function main() {
5252
execSync('npx rimraf ./.git'); // delete .git folder
5353

5454
fs.unlinkSync(path.join(projectPath, 'bin', 'install.js'));
55-
fs.rmdirSync(path.join(projectPath, 'bin'), { recursive: true });
55+
fs.rmSync(path.join(projectPath, 'bin'), { recursive: true });
5656

5757
// end notes
5858
console.log('\n');
@@ -63,6 +63,7 @@ async function main() {
6363
console.log(` cd ${projectName}`);
6464
console.log();
6565
console.log('Enjoy your typescript lambda app, which will provide you some ready-made features!');
66+
console.log('🎉 Tada...');
6667
console.log();
6768
} catch (error) {
6869
console.log(error);

0 commit comments

Comments
 (0)