@atlaskit/ads-mcp 0.10.0 → 0.10.1

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 CHANGED
@@ -1,5 +1,13 @@
1
1
  # @atlaskit/ads-mcp
2
2
 
3
+ ## 0.10.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [`a60a82196851a`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/a60a82196851a) -
8
+ Internal refactors to remove unused variables. No functional or public changes.
9
+ - Updated dependencies
10
+
3
11
  ## 0.10.0
4
12
 
5
13
  ### Minor Changes
@@ -51,7 +51,7 @@ if (!isAnalyticsOptedOut) {
51
51
  subproduct: 'ads-mcp',
52
52
  flushInterval: 5000
53
53
  });
54
- } catch (error) {
54
+ } catch (_unused) {
55
55
  // Analytics client not available or failed to initialize
56
56
  // Log the error but continue without analytics
57
57
  console.error('Could not initialize analytics client. This is normal as it is only intended to measure authenticated Atlassians');
@@ -90,7 +90,7 @@ function sendOperationalEvent(_ref) {
90
90
  }, attributes)
91
91
  }
92
92
  });
93
- } catch (error) {
93
+ } catch (_unused2) {
94
94
  // Analytics errors should not prevent normal operation
95
95
  // Silently fail to avoid disrupting the main functionality
96
96
  console.error('Error sending operational event to analytics');
@@ -41,7 +41,7 @@ if (!isAnalyticsOptedOut) {
41
41
  subproduct: 'ads-mcp',
42
42
  flushInterval: 5000
43
43
  });
44
- } catch (error) {
44
+ } catch {
45
45
  // Analytics client not available or failed to initialize
46
46
  // Log the error but continue without analytics
47
47
  console.error('Could not initialize analytics client. This is normal as it is only intended to measure authenticated Atlassians');
@@ -80,7 +80,7 @@ export function sendOperationalEvent({
80
80
  }
81
81
  }
82
82
  });
83
- } catch (error) {
83
+ } catch {
84
84
  // Analytics errors should not prevent normal operation
85
85
  // Silently fail to avoid disrupting the main functionality
86
86
  console.error('Error sending operational event to analytics');
@@ -235,7 +235,7 @@ export const analyzeA11yTool = async params => {
235
235
  }, null, 2)
236
236
  }]
237
237
  };
238
- } catch (error) {
238
+ } catch {
239
239
  // Fallback to pattern-based analysis if axe-core fails
240
240
  // console.warn('Axe-core analysis failed, falling back to pattern analysis:', error);
241
241
 
@@ -43,7 +43,7 @@ if (!isAnalyticsOptedOut) {
43
43
  subproduct: 'ads-mcp',
44
44
  flushInterval: 5000
45
45
  });
46
- } catch (error) {
46
+ } catch (_unused) {
47
47
  // Analytics client not available or failed to initialize
48
48
  // Log the error but continue without analytics
49
49
  console.error('Could not initialize analytics client. This is normal as it is only intended to measure authenticated Atlassians');
@@ -82,7 +82,7 @@ export function sendOperationalEvent(_ref) {
82
82
  }, attributes)
83
83
  }
84
84
  });
85
- } catch (error) {
85
+ } catch (_unused2) {
86
86
  // Analytics errors should not prevent normal operation
87
87
  // Silently fail to avoid disrupting the main functionality
88
88
  console.error('Error sending operational event to analytics');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/ads-mcp",
3
- "version": "0.10.0",
3
+ "version": "0.10.1",
4
4
  "description": "The official Atlassian Design System MCP server to develop apps and user interfaces matching the Atlassian style.",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",