expo-modules-autolinking 3.0.2 → 3.0.3

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
@@ -10,6 +10,10 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 3.0.3 — 2025-08-21
14
+
15
+ _This version does not introduce any user-facing changes._
16
+
13
17
  ## 3.0.2 — 2025-08-16
14
18
 
15
19
  ### 🐛 Bug fixes
@@ -42,7 +42,7 @@ abstract class GeneratePackagesListTask : Exec() {
42
42
  override fun exec() {
43
43
  val autolinkingOptions = AutolinkingOptions.fromJson(options.get())
44
44
  commandLine(
45
- AutolinkigCommandBuilder()
45
+ AutolinkingCommandBuilder()
46
46
  .command("generate-package-list")
47
47
  .option("namespace", namespace.get())
48
48
  .option("target", outputFile.get().asFile.absolutePath)
@@ -3,7 +3,7 @@ package expo.modules.plugin
3
3
  /**
4
4
  * Builder for creating command to run using `expo-modules-autolinking`.
5
5
  */
6
- class AutolinkigCommandBuilder {
6
+ class AutolinkingCommandBuilder {
7
7
  /**
8
8
  * Command for finding and running `expo-modules-autolinking`.
9
9
  */
@@ -14,7 +14,7 @@ open class ExpoAutolinkingSettingsExtension(
14
14
  /**
15
15
  * Command that should be provided to `react-native` to resolve the configuration.
16
16
  */
17
- val rnConfigCommand = AutolinkigCommandBuilder()
17
+ val rnConfigCommand = AutolinkingCommandBuilder()
18
18
  .command("react-native-config")
19
19
  .useJson()
20
20
  .build()
@@ -50,7 +50,7 @@ class SettingsManager(
50
50
  * Resolved configuration from `expo-modules-autolinking`.
51
51
  */
52
52
  private val config by lazy {
53
- val command = AutolinkigCommandBuilder()
53
+ val command = AutolinkingCommandBuilder()
54
54
  .command("resolve")
55
55
  .useJson()
56
56
  .useAutolinkingOptions(autolinkingOptions)
@@ -42,7 +42,7 @@ class ExpoAutolinkingSettingsPluginTest {
42
42
  val configFromPlugin = ExpoAutolinkingConfig.decodeFromString(configStringFromPlugin!!)
43
43
 
44
44
  val configStringFromAutolinking = testProjectDir.root.runCommand(
45
- *AutolinkigCommandBuilder()
45
+ *AutolinkingCommandBuilder()
46
46
  .command("resolve")
47
47
  .useJson()
48
48
  .build()
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-modules-autolinking",
3
- "version": "3.0.2",
3
+ "version": "3.0.3",
4
4
  "description": "Scripts that autolink Expo modules.",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",
@@ -34,7 +34,7 @@
34
34
  "license": "MIT",
35
35
  "homepage": "https://github.com/expo/expo/tree/main/packages/expo-modules-autolinking#readme",
36
36
  "devDependencies": {
37
- "expo-module-scripts": "~5.0.2",
37
+ "expo-module-scripts": "~5.0.3",
38
38
  "memfs": "^3.2.0",
39
39
  "minimatch": "^9.0.0"
40
40
  },
@@ -47,5 +47,5 @@
47
47
  "require-from-string": "^2.0.2",
48
48
  "resolve-from": "^5.0.0"
49
49
  },
50
- "gitHead": "eaa9b645058cf2233fbb27bb21a19bc605c90a88"
50
+ "gitHead": "f2270a4447fa0939e0d6f95c92bf5238e7162a73"
51
51
  }