@hot-updater/bare 0.28.0 → 0.29.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/dist/index.cjs +299 -489
- package/dist/index.d.cts +5 -0
- package/dist/{index.d.ts → index.d.mts} +5 -0
- package/dist/{index.js → index.mjs} +294 -472
- package/package.json +34 -7
package/dist/index.d.cts
CHANGED
|
@@ -19,6 +19,11 @@ interface BarePluginConfig extends BuildPluginConfig {
|
|
|
19
19
|
* @recommended true
|
|
20
20
|
*/
|
|
21
21
|
enableHermes: boolean;
|
|
22
|
+
/**
|
|
23
|
+
* @default true
|
|
24
|
+
* Whether to reset the Metro cache before bundling.
|
|
25
|
+
*/
|
|
26
|
+
resetCache?: boolean;
|
|
22
27
|
}
|
|
23
28
|
declare const bare: (config: BarePluginConfig) => ({
|
|
24
29
|
cwd
|
|
@@ -19,6 +19,11 @@ interface BarePluginConfig extends BuildPluginConfig {
|
|
|
19
19
|
* @recommended true
|
|
20
20
|
*/
|
|
21
21
|
enableHermes: boolean;
|
|
22
|
+
/**
|
|
23
|
+
* @default true
|
|
24
|
+
* Whether to reset the Metro cache before bundling.
|
|
25
|
+
*/
|
|
26
|
+
resetCache?: boolean;
|
|
22
27
|
}
|
|
23
28
|
declare const bare: (config: BarePluginConfig) => ({
|
|
24
29
|
cwd
|