@kishannareshpal/expo-pdf 0.2.0 → 0.2.1
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 +8 -0
- package/bunfig.toml +2 -0
- package/package.json +10 -10
- package/bun.lock +0 -2278
package/CHANGELOG.md
CHANGED
|
@@ -13,6 +13,14 @@
|
|
|
13
13
|
_This version does not introduce any user-facing changes._
|
|
14
14
|
-->
|
|
15
15
|
|
|
16
|
+
## 0.2.1 - 2026-01-09
|
|
17
|
+
|
|
18
|
+
_This version does not introduce any user-facing changes._
|
|
19
|
+
|
|
20
|
+
### 💡 Others
|
|
21
|
+
|
|
22
|
+
- Reduce package size by removing lock files from the package bundle (https://github.com/kishannareshpal/expo-pdf/commit/f9be18c by @kishannareshpal)
|
|
23
|
+
|
|
16
24
|
## 0.2.0 - 2026-01-09
|
|
17
25
|
|
|
18
26
|
### 🎉 New features
|
package/bunfig.toml
ADDED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kishannareshpal/expo-pdf",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"author": "Kishan Jadav <kishan_jadav@hotmail.com> (https://github.com/kishannareshpal)",
|
|
5
5
|
"repository": "https://github.com/kishannareshpal/expo-pdf",
|
|
6
6
|
"main": "build/index.js",
|
|
@@ -43,17 +43,17 @@
|
|
|
43
43
|
]
|
|
44
44
|
},
|
|
45
45
|
"scripts": {
|
|
46
|
-
"build": "
|
|
47
|
-
"clean": "
|
|
48
|
-
"lint": "
|
|
49
|
-
"test": "
|
|
50
|
-
"prepublishOnly": "
|
|
51
|
-
"
|
|
46
|
+
"build": "bun run em build",
|
|
47
|
+
"clean": "bun run em clean",
|
|
48
|
+
"lint": "bun run em lint",
|
|
49
|
+
"test": "bun run em test",
|
|
50
|
+
"prepublishOnly": "bun run em prepublishOnly",
|
|
51
|
+
"em": "bunx expo-module",
|
|
52
52
|
"open:ios": "xed example/ios",
|
|
53
53
|
"open:android": "open -a \"Android Studio\" example/android",
|
|
54
|
-
"format": "prettier --write .",
|
|
55
|
-
"format:check": "prettier --check .",
|
|
56
|
-
"prepare": "husky;
|
|
54
|
+
"format": "bunx prettier --write .",
|
|
55
|
+
"format:check": "bunx prettier --check .",
|
|
56
|
+
"prepare": "bunx husky; bun run em prepare"
|
|
57
57
|
},
|
|
58
58
|
"types": "build/index.d.ts"
|
|
59
59
|
}
|