create-expo-module 2.1.7 → 2.1.8
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/build/index.js +1 -1
- package/build/utils/tar.d.ts +1 -1
- package/package.json +3 -3
package/build/utils/tar.d.ts
CHANGED
|
@@ -5,7 +5,7 @@ export interface ExtractOptions {
|
|
|
5
5
|
rename?(name: string, type: TarTypeFlag): string | null | undefined;
|
|
6
6
|
checksumAlgorithm?: string;
|
|
7
7
|
}
|
|
8
|
-
export declare function extractStream(input: ReadableStream,
|
|
8
|
+
export declare function extractStream(input: ReadableStream, targetOutput: string, options?: ExtractOptions): Promise<string>;
|
|
9
9
|
/** Extract a local tarball file to a directory */
|
|
10
10
|
export declare function extractLocalTarball({ filePath, dir }: {
|
|
11
11
|
filePath: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-expo-module",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.8",
|
|
4
4
|
"description": "The script to create the Expo module",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"expo",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"watch": "yarn run build --watch"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@expo/json-file": "^10.0.
|
|
45
|
+
"@expo/json-file": "^10.0.15",
|
|
46
46
|
"@expo/rudder-sdk-node": "^1.1.1",
|
|
47
47
|
"@expo/spawn-async": "^1.7.2",
|
|
48
48
|
"@octokit/types": "^15.0.0",
|
|
@@ -61,5 +61,5 @@
|
|
|
61
61
|
"multitars": "^1.0.0",
|
|
62
62
|
"validate-npm-package-name": "^6.0.2"
|
|
63
63
|
},
|
|
64
|
-
"gitHead": "
|
|
64
|
+
"gitHead": "0c1476ccb1494a2019171f5df1d7a1b7803455e9"
|
|
65
65
|
}
|