dslop 1.0.3 → 1.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -1
- package/package.json +3 -2
package/dist/index.js
CHANGED
|
@@ -6559,7 +6559,7 @@ async function scanDirectory(targetPath, options) {
|
|
|
6559
6559
|
}
|
|
6560
6560
|
|
|
6561
6561
|
// index.ts
|
|
6562
|
-
var VERSION = process.env.npm_package_version || "1.0.
|
|
6562
|
+
var VERSION = process.env.npm_package_version || "1.0.5";
|
|
6563
6563
|
function showHelp() {
|
|
6564
6564
|
console.log(`
|
|
6565
6565
|
dslop - Detect Similar/Duplicate Lines Of Programming
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dslop",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.5",
|
|
4
4
|
"description": "Detect Similar/Duplicate Lines Of Programming - Find code duplication in your codebase",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -8,7 +8,8 @@
|
|
|
8
8
|
"dslop": "./dist/index.js"
|
|
9
9
|
},
|
|
10
10
|
"files": [
|
|
11
|
-
"dist"
|
|
11
|
+
"dist",
|
|
12
|
+
"README.md"
|
|
12
13
|
],
|
|
13
14
|
"scripts": {
|
|
14
15
|
"dev": "bun run --watch index.ts",
|