fix(NA): bundle sizes

This commit is contained in:
Tiago Costa 2022-08-14 01:59:22 +01:00
parent a89d17a358
commit 8aefe84fbc
No known key found for this signature in database
GPG key ID: BAECC2D04A04C6EA
2 changed files with 4 additions and 4 deletions

View file

@ -66,7 +66,7 @@ jsts_transpiler(
jsts_transpiler(
name = "target_web",
srcs = [
"src/web_index.ts",
"web_index.ts",
"src/format_request.ts",
"src/parse_endpoint.ts",
],

View file

@ -6,8 +6,8 @@
* Side Public License, v 1.
*/
export { formatRequest } from './format_request';
export { parseEndpoint } from './parse_endpoint';
export { formatRequest } from './src/format_request';
export { parseEndpoint } from './src/parse_endpoint';
export type {
RouteRepositoryClient,
ReturnOf,
@ -18,4 +18,4 @@ export type {
ServerRoute,
RouteParamsRT,
RouteState,
} from './typings';
} from './src/typings';