Skip to content

Commit

Permalink
chore: update
Browse files Browse the repository at this point in the history
  • Loading branch information
zhangtao25 committed Oct 13, 2024
1 parent e2e3a25 commit 51a94d2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .env.example
Original file line number Diff line number Diff line change
@@ -1 +1 @@
DATABASE_URL=postgress://canyon:canyon@localhost:5432/canyon
DATABASE_URL=postgress://username:password@localhost:5432/canyon
2 changes: 1 addition & 1 deletion scripts/rm.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ function deleteNodeModules(dir) {
const time = new Date().getTime();
if (entry.name === 'node_modules' || entry.name === 'dist') {
fs.rmSync(curPath, { recursive: true, force: true })
console.log(`正在删除: ${entry.name},耗时:${new Date().getTime() - time}`);
console.log(`deleting: ${curPath}, time consuming:${new Date().getTime() - time}`);
} else {
deleteNodeModules(curPath);
}
Expand Down

0 comments on commit 51a94d2

Please sign in to comment.