Skip to content

Commit 27fa2bc

Browse files
authored
fix: remove unnecesary logs (#13)
1 parent 2c867b2 commit 27fa2bc

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

create.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -243,8 +243,6 @@ const dir = (name, items) => ({
243243

244244
const create = (item) => {
245245
if (item.type === "dir") {
246-
console.log(item.name)
247-
248246
fs.mkdirSync(item.name);
249247
process.chdir(item.name);
250248
item.items.forEach(create);

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "create-kaplay",
33
"description": "Start a KAPLAY project in no time",
4-
"version": "2.7.1",
4+
"version": "2.7.2",
55
"license": "MIT",
66
"homepage": "https://kaplayjs.com/",
77
"repository": "github:marklovers/create-kaplay",

0 commit comments

Comments
 (0)