create-expo-module 56.0.0 → 56.0.2
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/LICENSE +21 -0
- package/build/index.js +4 -4
- package/build/utils/tar.d.ts +1 -1
- package/package.json +17 -18
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": "56.0.
|
|
3
|
+
"version": "56.0.2",
|
|
4
4
|
"description": "The script to create the Expo module",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"expo",
|
|
@@ -30,21 +30,9 @@
|
|
|
30
30
|
"engines": {
|
|
31
31
|
"node": ">=18.13.0"
|
|
32
32
|
},
|
|
33
|
-
"scripts": {
|
|
34
|
-
"build": "ncc build ./src/index.ts -o build/",
|
|
35
|
-
"build:prod": "ncc build ./src/index.ts -o build/ --minify --no-cache --no-source-map-register",
|
|
36
|
-
"clean": "expo-module clean",
|
|
37
|
-
"lint": "expo-module lint",
|
|
38
|
-
"typecheck": "expo-module typecheck",
|
|
39
|
-
"test": "expo-module test",
|
|
40
|
-
"test:e2e": "expo-module test --config e2e/jest.config.js --runInBand",
|
|
41
|
-
"watch": "pnpm run build --watch",
|
|
42
|
-
"prepublishOnly": "pnpm run clean && pnpm run build:prod"
|
|
43
|
-
},
|
|
44
33
|
"devDependencies": {
|
|
45
|
-
"@expo/json-file": "10.1.0",
|
|
46
34
|
"@expo/rudder-sdk-node": "^1.1.1",
|
|
47
|
-
"@expo/spawn-async": "^1.
|
|
35
|
+
"@expo/spawn-async": "^1.8.0",
|
|
48
36
|
"@octokit/types": "^15.0.0",
|
|
49
37
|
"@types/cross-spawn": "^6.0.6",
|
|
50
38
|
"@types/ejs": "^3.1.5",
|
|
@@ -59,12 +47,23 @@
|
|
|
59
47
|
"cross-spawn": "^7.0.5",
|
|
60
48
|
"debug": "^4.3.4",
|
|
61
49
|
"ejs": "^3.1.10",
|
|
62
|
-
"expo-module-scripts": "56.0.0",
|
|
63
50
|
"getenv": "^2.0.0",
|
|
64
51
|
"ora": "^5.4.1",
|
|
65
52
|
"prompts": "^2.4.2",
|
|
66
53
|
"multitars": "^1.0.0",
|
|
67
|
-
"validate-npm-package-name": "^6.0.2"
|
|
54
|
+
"validate-npm-package-name": "^6.0.2",
|
|
55
|
+
"expo-module-scripts": "56.0.2",
|
|
56
|
+
"@expo/json-file": "10.2.0"
|
|
68
57
|
},
|
|
69
|
-
"gitHead": "
|
|
70
|
-
|
|
58
|
+
"gitHead": "c4c9867a0bcbb188e55ecaec4998e38d33108a5d",
|
|
59
|
+
"scripts": {
|
|
60
|
+
"build": "ncc build ./src/index.ts -o build/",
|
|
61
|
+
"build:prod": "ncc build ./src/index.ts -o build/ --minify --no-cache --no-source-map-register",
|
|
62
|
+
"clean": "expo-module clean",
|
|
63
|
+
"lint": "expo-module lint",
|
|
64
|
+
"typecheck": "expo-module typecheck",
|
|
65
|
+
"test": "expo-module test",
|
|
66
|
+
"test:e2e": "expo-module test --config e2e/jest.config.js --runInBand",
|
|
67
|
+
"watch": "pnpm run build --watch"
|
|
68
|
+
}
|
|
69
|
+
}
|