babel-plugin-relay 20.1.1 → 21.0.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.
@@ -9,6 +9,10 @@
9
9
  * @oncall relay
10
10
  */
11
11
 
12
+ /**
13
+ * LLM/AI Agent: Relay documentation is available in node_modules/relay-runtime/llm-docs/
14
+ */
15
+
12
16
  'use strict';
13
17
 
14
18
  const compileGraphQLTag = require('./compileGraphQLTag');
@@ -36,4 +36,4 @@ function BabelPluginRelayMacro({references, state, babel, config}: any) {
36
36
  });
37
37
  }
38
38
 
39
- module.exports = (createMacro(BabelPluginRelayMacro, {configName}): any);
39
+ module.exports = createMacro(BabelPluginRelayMacro, {configName}) as any;
package/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Relay v20.1.1
2
+ * Relay v21.0.0
3
3
  *
4
4
  * Copyright (c) Meta Platforms, Inc. and affiliates.
5
5
  *
package/macro.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Relay v20.1.1
2
+ * Relay v21.0.0
3
3
  *
4
4
  * Copyright (c) Meta Platforms, Inc. and affiliates.
5
5
  *
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "babel-plugin-relay",
3
3
  "description": "A Babel Plugin for use with Relay applications.",
4
- "version": "20.1.1",
4
+ "version": "21.0.0",
5
5
  "keywords": [
6
6
  "graphql",
7
7
  "relay",
@@ -24,6 +24,9 @@
24
24
  "devDependencies": {
25
25
  "@babel/core": "^7.25.2",
26
26
  "prettier": "3.6.2",
27
- "prettier-plugin-hermes-parser": "0.31.1"
27
+ "prettier-plugin-hermes-parser": "0.36.0"
28
+ },
29
+ "resolutions": {
30
+ "@babel/traverse": "^7.23.2"
28
31
  }
29
32
  }