@expo/repack-app 0.4.1 → 0.4.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/dist/index.d.ts +4 -0
- package/dist/index.js +22 -22
- package/package.json +6 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@expo/repack-app",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.3",
|
|
4
4
|
"description": "Repacking tool for Expo apps",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"typings": "dist/index.d.ts",
|
|
@@ -12,10 +12,10 @@
|
|
|
12
12
|
"clean": "rm -rf build dist",
|
|
13
13
|
"lint": "eslint src",
|
|
14
14
|
"prepare": "bun run clean && bun run build:all",
|
|
15
|
-
"test": "
|
|
16
|
-
"test:e2e": "
|
|
17
|
-
"test:e2e:android": "
|
|
18
|
-
"test:e2e:ios": "
|
|
15
|
+
"test": "vitest run src",
|
|
16
|
+
"test:e2e": "vitest run e2e",
|
|
17
|
+
"test:e2e:android": "vitest run e2e -t Android",
|
|
18
|
+
"test:e2e:ios": "vitest run e2e -t iOS",
|
|
19
19
|
"typecheck": "tsc --noEmit"
|
|
20
20
|
},
|
|
21
21
|
"bin": {
|
|
@@ -50,6 +50,7 @@
|
|
|
50
50
|
"slugify": "^1.6.6",
|
|
51
51
|
"temp-dir": "^2.0.0",
|
|
52
52
|
"typescript": "^5.9.3",
|
|
53
|
+
"vitest": "^4.1.0",
|
|
53
54
|
"xml2js": "^0.6.2"
|
|
54
55
|
}
|
|
55
56
|
}
|