@elizaos/config 1.7.2-alpha.8 → 1.7.2-beta.0

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.
Files changed (2) hide show
  1. package/dist/index.js +21 -20
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -191309,7 +191309,7 @@ var require_resolveProjectList = __commonJS((exports) => {
191309
191309
  var require_package2 = __commonJS((exports, module) => {
191310
191310
  module.exports = {
191311
191311
  name: "@typescript-eslint/typescript-estree",
191312
- version: "8.53.0",
191312
+ version: "8.53.1",
191313
191313
  description: "A parser that converts TypeScript source code into an ESTree compatible form",
191314
191314
  files: [
191315
191315
  "dist",
@@ -191361,10 +191361,10 @@ var require_package2 = __commonJS((exports, module) => {
191361
191361
  typecheck: "yarn run -BT nx typecheck"
191362
191362
  },
191363
191363
  dependencies: {
191364
- "@typescript-eslint/project-service": "8.53.0",
191365
- "@typescript-eslint/tsconfig-utils": "8.53.0",
191366
- "@typescript-eslint/types": "8.53.0",
191367
- "@typescript-eslint/visitor-keys": "8.53.0",
191364
+ "@typescript-eslint/project-service": "8.53.1",
191365
+ "@typescript-eslint/tsconfig-utils": "8.53.1",
191366
+ "@typescript-eslint/types": "8.53.1",
191367
+ "@typescript-eslint/visitor-keys": "8.53.1",
191368
191368
  debug: "^4.4.3",
191369
191369
  minimatch: "^9.0.5",
191370
191370
  semver: "^7.7.3",
@@ -193765,7 +193765,7 @@ var require_parser2 = __commonJS((exports) => {
193765
193765
  var require_package3 = __commonJS((exports, module) => {
193766
193766
  module.exports = {
193767
193767
  name: "@typescript-eslint/parser",
193768
- version: "8.53.0",
193768
+ version: "8.53.1",
193769
193769
  description: "An ESLint custom parser which leverages TypeScript ESTree",
193770
193770
  files: [
193771
193771
  "dist",
@@ -193816,10 +193816,10 @@ var require_package3 = __commonJS((exports, module) => {
193816
193816
  typescript: ">=4.8.4 <6.0.0"
193817
193817
  },
193818
193818
  dependencies: {
193819
- "@typescript-eslint/scope-manager": "8.53.0",
193820
- "@typescript-eslint/types": "8.53.0",
193821
- "@typescript-eslint/typescript-estree": "8.53.0",
193822
- "@typescript-eslint/visitor-keys": "8.53.0",
193819
+ "@typescript-eslint/scope-manager": "8.53.1",
193820
+ "@typescript-eslint/types": "8.53.1",
193821
+ "@typescript-eslint/typescript-estree": "8.53.1",
193822
+ "@typescript-eslint/visitor-keys": "8.53.1",
193823
193823
  debug: "^4.4.3"
193824
193824
  },
193825
193825
  devDependencies: {
@@ -197831,9 +197831,10 @@ var require_RuleCreator = __commonJS((exports) => {
197831
197831
  };
197832
197832
  }
197833
197833
  function createRule({ create, defaultOptions, meta, name }) {
197834
+ const resolvedDefaultOptions = defaultOptions ?? [];
197834
197835
  return {
197835
197836
  create(context) {
197836
- const optionsWithDefault = (0, applyDefault_1.applyDefault)(defaultOptions, context.options);
197837
+ const optionsWithDefault = (0, applyDefault_1.applyDefault)(resolvedDefaultOptions, context.options);
197837
197838
  return create(context, optionsWithDefault);
197838
197839
  },
197839
197840
  defaultOptions,
@@ -292753,7 +292754,7 @@ var require_consistent_indexed_object_style = __commonJS((exports) => {
292753
292754
  if (node.typeParameters?.params.length) {
292754
292755
  genericTypes = `<${node.typeParameters.params.map((p) => context.sourceCode.getText(p)).join(", ")}>`;
292755
292756
  }
292756
- checkMembers(node.body.body, node, node.id, `type ${node.id.name}${genericTypes} = `, ";", !node.extends.length);
292757
+ checkMembers(node.body.body, node, node.id, `type ${node.id.name}${genericTypes} = `, ";", !node.extends.length && node.parent.type !== utils_1.AST_NODE_TYPES.ExportDefaultDeclaration);
292757
292758
  },
292758
292759
  TSMappedType(node) {
292759
292760
  const key = node.key;
@@ -320130,7 +320131,7 @@ var require_rules4 = __commonJS((exports, module) => {
320130
320131
  var require_package7 = __commonJS((exports, module) => {
320131
320132
  module.exports = {
320132
320133
  name: "@typescript-eslint/eslint-plugin",
320133
- version: "8.53.0",
320134
+ version: "8.53.1",
320134
320135
  description: "TypeScript plugin for ESLint",
320135
320136
  files: [
320136
320137
  "dist",
@@ -320189,10 +320190,10 @@ var require_package7 = __commonJS((exports, module) => {
320189
320190
  },
320190
320191
  dependencies: {
320191
320192
  "@eslint-community/regexpp": "^4.12.2",
320192
- "@typescript-eslint/scope-manager": "8.53.0",
320193
- "@typescript-eslint/type-utils": "8.53.0",
320194
- "@typescript-eslint/utils": "8.53.0",
320195
- "@typescript-eslint/visitor-keys": "8.53.0",
320193
+ "@typescript-eslint/scope-manager": "8.53.1",
320194
+ "@typescript-eslint/type-utils": "8.53.1",
320195
+ "@typescript-eslint/utils": "8.53.1",
320196
+ "@typescript-eslint/visitor-keys": "8.53.1",
320196
320197
  ignore: "^7.0.5",
320197
320198
  "natural-compare": "^1.4.0",
320198
320199
  "ts-api-utils": "^2.4.0"
@@ -320200,8 +320201,8 @@ var require_package7 = __commonJS((exports, module) => {
320200
320201
  devDependencies: {
320201
320202
  "@types/mdast": "^4.0.4",
320202
320203
  "@types/natural-compare": "*",
320203
- "@typescript-eslint/rule-schema-to-typescript-types": "8.53.0",
320204
- "@typescript-eslint/rule-tester": "8.53.0",
320204
+ "@typescript-eslint/rule-schema-to-typescript-types": "8.53.1",
320205
+ "@typescript-eslint/rule-tester": "8.53.1",
320205
320206
  "@vitest/coverage-v8": "^3.2.4",
320206
320207
  ajv: "^6.12.6",
320207
320208
  eslint: "*",
@@ -320220,7 +320221,7 @@ var require_package7 = __commonJS((exports, module) => {
320220
320221
  vitest: "^3.2.4"
320221
320222
  },
320222
320223
  peerDependencies: {
320223
- "@typescript-eslint/parser": "^8.53.0",
320224
+ "@typescript-eslint/parser": "^8.53.1",
320224
320225
  eslint: "^8.57.0 || ^9.0.0",
320225
320226
  typescript: ">=4.8.4 <6.0.0"
320226
320227
  },
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.7.2-alpha.8",
4
+ "version": "1.7.2-beta.0",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
7
7
  "module": "dist/index.js",
@@ -51,5 +51,5 @@
51
51
  "publishConfig": {
52
52
  "access": "public"
53
53
  },
54
- "gitHead": "fb51f753abe4316d5376ccf3357452d0d90b3767"
54
+ "gitHead": "13db97d17e0d0f0cb0d9f14c8fa1db02aed1ac84"
55
55
  }