@elizaos/config 1.6.5-alpha.21 → 1.6.5-alpha.23
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 +2812 -4550
- package/package.json +4 -4
- package/src/eslint/eslint.config.base.js +10 -2
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elizaos/config",
|
|
3
3
|
"description": "Shared configuration for ElizaOS projects and plugins",
|
|
4
|
-
"version": "1.6.5-alpha.
|
|
4
|
+
"version": "1.6.5-alpha.23",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"module": "dist/index.js",
|
|
@@ -38,8 +38,8 @@
|
|
|
38
38
|
"src"
|
|
39
39
|
],
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"prettier": "^3.
|
|
42
|
-
"typescript": "^5.
|
|
41
|
+
"prettier": "^3.7.4",
|
|
42
|
+
"typescript": "^5.9.3"
|
|
43
43
|
},
|
|
44
44
|
"scripts": {
|
|
45
45
|
"build": "bun run build.ts",
|
|
@@ -51,5 +51,5 @@
|
|
|
51
51
|
"publishConfig": {
|
|
52
52
|
"access": "public"
|
|
53
53
|
},
|
|
54
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "dd1b7e5b5013f8e29c857acfe5bef6f966621d72"
|
|
55
55
|
}
|
|
@@ -92,7 +92,11 @@ const structuredLoggingRule = {
|
|
|
92
92
|
);
|
|
93
93
|
|
|
94
94
|
if (!srcProperty) {
|
|
95
|
-
context.report({
|
|
95
|
+
context.report({
|
|
96
|
+
node: firstArg,
|
|
97
|
+
messageId: 'missingSrcProperty',
|
|
98
|
+
data: { method: methodName },
|
|
99
|
+
});
|
|
96
100
|
return;
|
|
97
101
|
}
|
|
98
102
|
|
|
@@ -105,7 +109,11 @@ const structuredLoggingRule = {
|
|
|
105
109
|
// Validate src format
|
|
106
110
|
const srcValue = srcProperty.value.value;
|
|
107
111
|
if (!validateSrcFormat(srcValue)) {
|
|
108
|
-
context.report({
|
|
112
|
+
context.report({
|
|
113
|
+
node: srcProperty.value,
|
|
114
|
+
messageId: 'invalidSrcFormat',
|
|
115
|
+
data: { src: srcValue },
|
|
116
|
+
});
|
|
109
117
|
}
|
|
110
118
|
|
|
111
119
|
// Check second argument (message)
|