vxrn 1.1.137 → 1.1.138
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/package.json +5 -5
- package/types/exports/bindKeypressInput.d.ts +0 -2
- package/types/exports/coerceToArray.d.ts +0 -2
- package/types/exports/connectedNativeClients.d.ts +0 -2
- package/types/exports/entryRoot.d.ts +0 -11
- package/types/exports/getIndexJsonResponse.d.ts +0 -68
- package/types/exports/getReactNativeBundle.d.ts +0 -3
- package/types/exports/getViteServerConfig.d.ts +0 -4
- package/types/exports/hotUpdateCache.d.ts +0 -2
- package/types/exports/isBuildingNativeBundle.d.ts +0 -2
- package/types/exports/isWithin.d.ts +0 -2
- package/types/exports/reactNativeHMRPlugin.d.ts +0 -11
- package/types/exports/swapPrebuiltReactModules.d.ts +0 -7
- package/types/exports/uniq.d.ts +0 -2
- package/types/plugins/clientBundleTreeShakePlugin.d.ts +0 -13
- package/types/utils/getHtml.d.ts +0 -10
- package/types/utils/getIndexJsonResponse.d.ts +0 -68
- package/types/vendor/createExpoServer.d.ts +0 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vxrn",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.138",
|
|
4
4
|
"source": "src/index.ts",
|
|
5
5
|
"types": "./types/index.d.ts",
|
|
6
6
|
"type": "module",
|
|
@@ -32,10 +32,10 @@
|
|
|
32
32
|
"@babel/core": "^7.21.8",
|
|
33
33
|
"@hono/node-server": "^1.11.1",
|
|
34
34
|
"@vitejs/plugin-react-swc": "^3.6.0",
|
|
35
|
-
"@vxrn/react-native-prebuilt": "1.1.
|
|
36
|
-
"@vxrn/safe-area": "1.1.
|
|
37
|
-
"@vxrn/vite-flow": "1.1.
|
|
38
|
-
"@vxrn/vite-native-swc": "1.1.
|
|
35
|
+
"@vxrn/react-native-prebuilt": "1.1.138",
|
|
36
|
+
"@vxrn/safe-area": "1.1.138",
|
|
37
|
+
"@vxrn/vite-flow": "1.1.138",
|
|
38
|
+
"@vxrn/vite-native-swc": "1.1.138",
|
|
39
39
|
"citty": "^0.1.6",
|
|
40
40
|
"crossws": "^0.2.4",
|
|
41
41
|
"es-module-lexer": "^1.3.0",
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import type { VXRNConfigFilled } from '../utils/getOptionsFilled';
|
|
2
|
-
export declare let entryRoot: string;
|
|
3
|
-
export declare function reactNativeHMRPlugin({ root }: VXRNConfigFilled): {
|
|
4
|
-
name: string;
|
|
5
|
-
handleHotUpdate({ read, modules, file }: {
|
|
6
|
-
read: any;
|
|
7
|
-
modules: any;
|
|
8
|
-
file: any;
|
|
9
|
-
}): Promise<void>;
|
|
10
|
-
};
|
|
11
|
-
//# sourceMappingURL=entryRoot.d.ts.map
|
|
@@ -1,68 +0,0 @@
|
|
|
1
|
-
export declare function getIndexJsonResponse({ port, root }: {
|
|
2
|
-
port: number | string;
|
|
3
|
-
root: any;
|
|
4
|
-
}): {
|
|
5
|
-
name: string;
|
|
6
|
-
slug: string;
|
|
7
|
-
scheme: string;
|
|
8
|
-
version: string;
|
|
9
|
-
jsEngine: string;
|
|
10
|
-
orientation: string;
|
|
11
|
-
icon: string;
|
|
12
|
-
userInterfaceStyle: string;
|
|
13
|
-
splash: {
|
|
14
|
-
image: string;
|
|
15
|
-
resizeMode: string;
|
|
16
|
-
backgroundColor: string;
|
|
17
|
-
imageUrl: string;
|
|
18
|
-
};
|
|
19
|
-
updates: {
|
|
20
|
-
fallbackToCacheTimeout: number;
|
|
21
|
-
};
|
|
22
|
-
assetBundlePatterns: string[];
|
|
23
|
-
ios: {
|
|
24
|
-
supportsTablet: boolean;
|
|
25
|
-
bundleIdentifier: string;
|
|
26
|
-
};
|
|
27
|
-
android: {
|
|
28
|
-
package: string;
|
|
29
|
-
adaptiveIcon: {
|
|
30
|
-
foregroundImage: string;
|
|
31
|
-
backgroundColor: string;
|
|
32
|
-
foregroundImageUrl: string;
|
|
33
|
-
};
|
|
34
|
-
};
|
|
35
|
-
web: {
|
|
36
|
-
favicon: string;
|
|
37
|
-
};
|
|
38
|
-
extra: {
|
|
39
|
-
eas: {
|
|
40
|
-
projectId: string;
|
|
41
|
-
};
|
|
42
|
-
};
|
|
43
|
-
_internal: {
|
|
44
|
-
isDebug: boolean;
|
|
45
|
-
projectRoot: any;
|
|
46
|
-
dynamicConfigPath: null;
|
|
47
|
-
staticConfigPath: string;
|
|
48
|
-
packageJsonPath: string;
|
|
49
|
-
};
|
|
50
|
-
sdkVersion: string;
|
|
51
|
-
platforms: string[];
|
|
52
|
-
iconUrl: string;
|
|
53
|
-
debuggerHost: string;
|
|
54
|
-
logUrl: string;
|
|
55
|
-
developer: {
|
|
56
|
-
tool: string;
|
|
57
|
-
projectRoot: any;
|
|
58
|
-
};
|
|
59
|
-
packagerOpts: {
|
|
60
|
-
dev: boolean;
|
|
61
|
-
};
|
|
62
|
-
mainModuleName: string;
|
|
63
|
-
__flipperHack: string;
|
|
64
|
-
hostUri: string;
|
|
65
|
-
bundleUrl: string;
|
|
66
|
-
id: string;
|
|
67
|
-
};
|
|
68
|
-
//# sourceMappingURL=getIndexJsonResponse.d.ts.map
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import type { VXRNConfigFilled } from '../utils/getOptionsFilled';
|
|
2
|
-
export declare let entryRoot: string;
|
|
3
|
-
export declare function reactNativeHMRPlugin({ root }: VXRNConfigFilled): {
|
|
4
|
-
name: string;
|
|
5
|
-
handleHotUpdate({ read, modules, file }: {
|
|
6
|
-
read: any;
|
|
7
|
-
modules: any;
|
|
8
|
-
file: any;
|
|
9
|
-
}): Promise<void>;
|
|
10
|
-
};
|
|
11
|
-
//# sourceMappingURL=reactNativeHMRPlugin.d.ts.map
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
export declare function swapPrebuiltReactModules(cacheDir: string): Promise<{
|
|
2
|
-
name: string;
|
|
3
|
-
enforce: "pre";
|
|
4
|
-
resolveId(this: import("rollup").PluginContext, id: string, importer?: string | undefined): any;
|
|
5
|
-
load(this: import("rollup").PluginContext, id: string): string | undefined;
|
|
6
|
-
}>;
|
|
7
|
-
//# sourceMappingURL=swapPrebuiltReactModules.d.ts.map
|
package/types/exports/uniq.d.ts
DELETED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
interface TreeShakeTemplatePluginOptions {
|
|
2
|
-
sourcemap?: boolean;
|
|
3
|
-
}
|
|
4
|
-
export declare const clientBundleTreeShakePlugin: (options: TreeShakeTemplatePluginOptions) => {
|
|
5
|
-
name: string;
|
|
6
|
-
enforce: "post";
|
|
7
|
-
transform(this: import("rollup").TransformPluginContext, code: string, id: string): {
|
|
8
|
-
code: string;
|
|
9
|
-
map: import("magic-string").SourceMap | undefined;
|
|
10
|
-
} | undefined;
|
|
11
|
-
};
|
|
12
|
-
export {};
|
|
13
|
-
//# sourceMappingURL=clientBundleTreeShakePlugin.d.ts.map
|
package/types/utils/getHtml.d.ts
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
export declare function getHtml({ template, loaderData, loaderProps, appHtml, headHtml, css, preloads, }: {
|
|
2
|
-
css?: string;
|
|
3
|
-
template: string;
|
|
4
|
-
loaderData: Object;
|
|
5
|
-
loaderProps?: any;
|
|
6
|
-
appHtml: string;
|
|
7
|
-
headHtml: string;
|
|
8
|
-
preloads: string[];
|
|
9
|
-
}): string;
|
|
10
|
-
//# sourceMappingURL=getHtml.d.ts.map
|
|
@@ -1,68 +0,0 @@
|
|
|
1
|
-
export declare function getIndexJsonResponse({ port, root }: {
|
|
2
|
-
port: number | string;
|
|
3
|
-
root: any;
|
|
4
|
-
}): {
|
|
5
|
-
name: string;
|
|
6
|
-
slug: string;
|
|
7
|
-
scheme: string;
|
|
8
|
-
version: string;
|
|
9
|
-
jsEngine: string;
|
|
10
|
-
orientation: string;
|
|
11
|
-
icon: string;
|
|
12
|
-
userInterfaceStyle: string;
|
|
13
|
-
splash: {
|
|
14
|
-
image: string;
|
|
15
|
-
resizeMode: string;
|
|
16
|
-
backgroundColor: string;
|
|
17
|
-
imageUrl: string;
|
|
18
|
-
};
|
|
19
|
-
updates: {
|
|
20
|
-
fallbackToCacheTimeout: number;
|
|
21
|
-
};
|
|
22
|
-
assetBundlePatterns: string[];
|
|
23
|
-
ios: {
|
|
24
|
-
supportsTablet: boolean;
|
|
25
|
-
bundleIdentifier: string;
|
|
26
|
-
};
|
|
27
|
-
android: {
|
|
28
|
-
package: string;
|
|
29
|
-
adaptiveIcon: {
|
|
30
|
-
foregroundImage: string;
|
|
31
|
-
backgroundColor: string;
|
|
32
|
-
foregroundImageUrl: string;
|
|
33
|
-
};
|
|
34
|
-
};
|
|
35
|
-
web: {
|
|
36
|
-
favicon: string;
|
|
37
|
-
};
|
|
38
|
-
extra: {
|
|
39
|
-
eas: {
|
|
40
|
-
projectId: string;
|
|
41
|
-
};
|
|
42
|
-
};
|
|
43
|
-
_internal: {
|
|
44
|
-
isDebug: boolean;
|
|
45
|
-
projectRoot: any;
|
|
46
|
-
dynamicConfigPath: null;
|
|
47
|
-
staticConfigPath: string;
|
|
48
|
-
packageJsonPath: string;
|
|
49
|
-
};
|
|
50
|
-
sdkVersion: string;
|
|
51
|
-
platforms: string[];
|
|
52
|
-
iconUrl: string;
|
|
53
|
-
debuggerHost: string;
|
|
54
|
-
logUrl: string;
|
|
55
|
-
developer: {
|
|
56
|
-
tool: string;
|
|
57
|
-
projectRoot: any;
|
|
58
|
-
};
|
|
59
|
-
packagerOpts: {
|
|
60
|
-
dev: boolean;
|
|
61
|
-
};
|
|
62
|
-
mainModuleName: string;
|
|
63
|
-
__flipperHack: string;
|
|
64
|
-
hostUri: string;
|
|
65
|
-
bundleUrl: string;
|
|
66
|
-
id: string;
|
|
67
|
-
};
|
|
68
|
-
//# sourceMappingURL=getIndexJsonResponse.d.ts.map
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { type App } from 'h3';
|
|
2
|
-
import type { ViteDevServer } from 'vite';
|
|
3
|
-
export declare function createExpoServer({ root }: {
|
|
4
|
-
root: string;
|
|
5
|
-
}, app: App, vite: ViteDevServer): void;
|
|
6
|
-
export declare function getRoutePaths(cwd: string): string[];
|
|
7
|
-
//# sourceMappingURL=createExpoServer.d.ts.map
|