@link-assistant/hive-mind 1.23.4 → 1.23.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/CHANGELOG.md +11 -0
- package/package.json +3 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @link-assistant/hive-mind
|
|
2
2
|
|
|
3
|
+
## 1.23.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 28b7f22: Add code duplication detection with jscpd
|
|
8
|
+
- Add .jscpd.json configuration for JavaScript code duplication detection
|
|
9
|
+
- Add jscpd (^4.0.5) as devDependency
|
|
10
|
+
- Add npm script: `npm run check:duplication`
|
|
11
|
+
- Integrate code duplication check into CI workflow
|
|
12
|
+
- Set 11% threshold baseline (current codebase level)
|
|
13
|
+
|
|
3
14
|
## 1.23.4
|
|
4
15
|
|
|
5
16
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@link-assistant/hive-mind",
|
|
3
|
-
"version": "1.23.
|
|
3
|
+
"version": "1.23.5",
|
|
4
4
|
"description": "AI-powered issue solver and hive mind for collaborative problem solving",
|
|
5
5
|
"main": "src/hive.mjs",
|
|
6
6
|
"type": "module",
|
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
"test:usage-limit": "node tests/test-usage-limit.mjs",
|
|
20
20
|
"lint": "eslint 'src/**/*.{js,mjs,cjs}'",
|
|
21
21
|
"lint:fix": "eslint 'src/**/*.{js,mjs,cjs}' --fix",
|
|
22
|
+
"check:duplication": "jscpd .",
|
|
22
23
|
"format": "prettier --write \"**/*.{js,mjs,json,md}\"",
|
|
23
24
|
"format:check": "prettier --check \"**/*.{js,mjs,json,md}\"",
|
|
24
25
|
"changeset": "changeset",
|
|
@@ -59,6 +60,7 @@
|
|
|
59
60
|
"eslint-config-prettier": "^10.1.8",
|
|
60
61
|
"eslint-plugin-prettier": "^5.5.4",
|
|
61
62
|
"husky": "^9.1.7",
|
|
63
|
+
"jscpd": "^4.0.5",
|
|
62
64
|
"lint-staged": "^16.2.7",
|
|
63
65
|
"prettier": "^3.6.2"
|
|
64
66
|
},
|