Skip to content

Commit 85a9564

Browse files
committed
continuation of work
1 parent f1828f7 commit 85a9564

File tree

4 files changed

+37775
-3
lines changed

4 files changed

+37775
-3
lines changed

.github/workflows/filterJscpd.js

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
const fs = require('fs/promises')
2+
3+
async function main() {
4+
const jscpdReportPath = process.argv[2]
5+
const diffPath = process.argv[3]
6+
console.log('Recieved jscpd path: %s', jscpdReportPath)
7+
console.log('Recieved diff path: %s', diffPath)
8+
9+
const jscpdReport = JSON.parse(await fs.readFile(jscpdReportPath, 'utf8'))
10+
}
11+
12+
void main()

.github/workflows/parseJscpd.js

Lines changed: 0 additions & 3 deletions
This file was deleted.

0 commit comments

Comments
 (0)