expo-modules-autolinking 56.0.5 → 56.0.6
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
|
@@ -4,9 +4,9 @@ exports.getConfiguration = void 0;
|
|
|
4
4
|
exports.findModulesAsync = apiFindModulesAsync;
|
|
5
5
|
exports.resolveExtraBuildDependenciesAsync = apiResolveExtraBuildDependenciesAsync;
|
|
6
6
|
exports.resolveModulesAsync = apiResolveModulesAsync;
|
|
7
|
-
const autolinkingOptions_1 = require("../commands/autolinkingOptions");
|
|
8
7
|
const findModules_1 = require("./findModules");
|
|
9
8
|
const resolveModules_1 = require("./resolveModules");
|
|
9
|
+
const autolinkingOptions_1 = require("../commands/autolinkingOptions");
|
|
10
10
|
var getConfiguration_1 = require("./getConfiguration");
|
|
11
11
|
Object.defineProperty(exports, "getConfiguration", { enumerable: true, get: function () { return getConfiguration_1.getConfiguration; } });
|
|
12
12
|
/** @deprecated */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/autolinking/index.ts"],"names":[],"mappings":";;;AA2DyB,+CAAgB;AACE,mFAAkC;AACjD,qDAAmB;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/autolinking/index.ts"],"names":[],"mappings":";;;AA2DyB,+CAAgB;AACE,mFAAkC;AACjD,qDAAmB;AA7D/C,+CAAiD;AACjD,qDAA2F;AAE3F,uEAAgF;AAQhF,uDAAsD;AAA7C,oHAAA,gBAAgB,OAAA;AAgBzB,kBAAkB;AAClB,KAAK,UAAU,mBAAmB,CAAC,eAA8B;IAC/D,MAAM,wBAAwB,GAAG,IAAA,mDAA8B,EAAC,eAAe,CAAC,CAAC;IACjF,OAAO,IAAA,8BAAgB,EAAC;QACtB,OAAO,EAAE,MAAM,wBAAwB,CAAC,UAAU,EAAE;QACpD,kBAAkB,EAAE,MAAM,wBAAwB,CAAC,kBAAkB,CAAC,eAAe,CAAC,QAAQ,CAAC;KAChG,CAAC,CAAC;AACL,CAAC;AAED,kBAAkB;AAClB,KAAK,UAAU,qCAAqC,CAClD,eAA+B;IAE/B,OAAO,IAAA,mDAAkC,EAAC;QACxC,WAAW,EAAE,eAAe,CAAC,WAAW;QACxC,QAAQ,EAAE,eAAe,CAAC,QAAQ;KACnC,CAAC,CAAC;AACL,CAAC;AAED,kBAAkB;AAClB,KAAK,UAAU,sBAAsB,CACnC,aAA4B,EAC5B,eAA8B;IAE9B,MAAM,wBAAwB,GAAG,IAAA,mDAA8B,EAAC,eAAe,CAAC,CAAC;IACjF,OAAO,IAAA,oCAAmB,EACxB,aAAa,EACb,MAAM,wBAAwB,CAAC,kBAAkB,CAAC,eAAe,CAAC,QAAQ,CAAC,CAC5E,CAAC;AACJ,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-modules-autolinking",
|
|
3
|
-
"version": "56.0.
|
|
3
|
+
"version": "56.0.6",
|
|
4
4
|
"description": "Scripts that autolink Expo modules.",
|
|
5
5
|
"main": "build/index.js",
|
|
6
6
|
"types": "build/index.d.ts",
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"chalk": "^4.1.0",
|
|
50
50
|
"commander": "^7.2.0"
|
|
51
51
|
},
|
|
52
|
-
"gitHead": "
|
|
52
|
+
"gitHead": "51c27fce31a5b3a877a4b05d832dabf4a99db5e1",
|
|
53
53
|
"scripts": {
|
|
54
54
|
"build": "expo-module build",
|
|
55
55
|
"clean": "expo-module clean",
|
package/src/autolinking/index.ts
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { findModulesAsync } from './findModules';
|
|
2
|
+
import { resolveExtraBuildDependenciesAsync, resolveModulesAsync } from './resolveModules';
|
|
1
3
|
import type { AutolinkingOptions } from '../commands/autolinkingOptions';
|
|
2
4
|
import { createAutolinkingOptionsLoader } from '../commands/autolinkingOptions';
|
|
3
5
|
import type {
|
|
@@ -6,8 +8,6 @@ import type {
|
|
|
6
8
|
SearchResults,
|
|
7
9
|
SupportedPlatform,
|
|
8
10
|
} from '../types';
|
|
9
|
-
import { findModulesAsync } from './findModules';
|
|
10
|
-
import { resolveExtraBuildDependenciesAsync, resolveModulesAsync } from './resolveModules';
|
|
11
11
|
|
|
12
12
|
export { getConfiguration } from './getConfiguration';
|
|
13
13
|
|