Skip to content

Commit f865569

Browse files
committed
chore; use Node 22 to run CI and removed unnecessary log
1 parent df73230 commit f865569

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
strategy:
2020
fail-fast: false
2121
matrix:
22-
node: [20]
22+
node: [22]
2323

2424
steps:
2525
- name: Clone repository
@@ -45,7 +45,7 @@ jobs:
4545
- name: Install npm dependencies
4646
run: npm install
4747

48-
- name: Build with TS Types
48+
- name: Build Library
4949
run: npm run build
5050

5151
- name: Run Unit Tests

src/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,6 @@ function getDestinationPath(inFile: string, outDir: string, options: CopyFileOpt
9696
/** Show statistics when `verbose` and/or `stat` are enabled */
9797
function displayStatWhenEnabled(options: CopyFileOptions, count: number) {
9898
if (options.verbose || options.stat) {
99-
console.log('\n');
10099
console.log(`Files copied: ${count}`);
101100
console.timeEnd('Execution time');
102101
}

0 commit comments

Comments
 (0)