react-native-asset 2.2.2 → 2.2.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/esm/cli.js +1 -1
- package/package.json +1 -1
- package/script/cli.js +1 -1
package/esm/cli.js
CHANGED
|
@@ -19,7 +19,7 @@ export const runCli = async () => {
|
|
|
19
19
|
noUnlink: false,
|
|
20
20
|
},
|
|
21
21
|
});
|
|
22
|
-
const reactNativeConfigPath = path.join(args.path, `react-native
|
|
22
|
+
const reactNativeConfigPath = path.join(args.path, `react-native.config.js`);
|
|
23
23
|
let reactNativeConfigExists = false;
|
|
24
24
|
try {
|
|
25
25
|
const _ = await dntShim.Deno.lstat(reactNativeConfigPath);
|
package/package.json
CHANGED
package/script/cli.js
CHANGED
|
@@ -55,7 +55,7 @@ const runCli = async () => {
|
|
|
55
55
|
noUnlink: false,
|
|
56
56
|
},
|
|
57
57
|
});
|
|
58
|
-
const reactNativeConfigPath = path.join(args.path, `react-native
|
|
58
|
+
const reactNativeConfigPath = path.join(args.path, `react-native.config.js`);
|
|
59
59
|
let reactNativeConfigExists = false;
|
|
60
60
|
try {
|
|
61
61
|
const _ = await dntShim.Deno.lstat(reactNativeConfigPath);
|