@cedarjs/eslint-plugin 1.0.0-canary.13156 → 1.0.0-canary.13159

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.
@@ -1 +1 @@
1
- {"version":3,"file":"service-type-annotations.d.ts","sourceRoot":"","sources":["../src/service-type-annotations.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,WAAW,EAAkB,MAAM,0BAA0B,CAAA;AAOtE,eAAO,MAAM,sBAAsB,4EA0JjC,CAAA"}
1
+ {"version":3,"file":"service-type-annotations.d.ts","sourceRoot":"","sources":["../src/service-type-annotations.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,WAAW,EAAkB,MAAM,0BAA0B,CAAA;AAOtE,eAAO,MAAM,sBAAsB,4EAuJjC,CAAA"}
@@ -51,7 +51,7 @@ const serviceTypeAnnotations = createRule({
51
51
  },
52
52
  // Then start looking at every exported fn/const
53
53
  ExportNamedDeclaration(node) {
54
- if (!node.declaration || node.declaration.type !== import_utils.AST_NODE_TYPES.VariableDeclaration) {
54
+ if (node.declaration?.type !== import_utils.AST_NODE_TYPES.VariableDeclaration) {
55
55
  return;
56
56
  }
57
57
  node.declaration.declarations.forEach((vd) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cedarjs/eslint-plugin",
3
- "version": "1.0.0-canary.13156+854885209",
3
+ "version": "1.0.0-canary.13159+1ab14fb8a",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/cedarjs/cedar.git",
@@ -22,15 +22,15 @@
22
22
  "test:watch": "vitest watch"
23
23
  },
24
24
  "dependencies": {
25
- "@typescript-eslint/utils": "8.50.1",
25
+ "@typescript-eslint/utils": "8.52.0",
26
26
  "eslint": "8.57.1"
27
27
  },
28
28
  "devDependencies": {
29
- "@cedarjs/framework-tools": "1.0.0-canary.13156",
29
+ "@cedarjs/framework-tools": "1.0.0-canary.13159",
30
30
  "@types/eslint": "8.56.12",
31
31
  "@types/estree": "1.0.8",
32
- "@typescript-eslint/parser": "8.50.1",
33
- "@typescript-eslint/rule-tester": "8.50.1",
32
+ "@typescript-eslint/parser": "8.52.0",
33
+ "@typescript-eslint/rule-tester": "8.52.0",
34
34
  "tsx": "4.21.0",
35
35
  "typescript": "5.9.3",
36
36
  "vitest": "3.2.4"
@@ -38,5 +38,5 @@
38
38
  "publishConfig": {
39
39
  "access": "public"
40
40
  },
41
- "gitHead": "85488520944343c8c3c8a147e8c2794bc4ae7ad1"
41
+ "gitHead": "1ab14fb8ac7414b5250dfd45bcdb0fe08685728a"
42
42
  }