Skip to content

Commit

Permalink
Fix: TypeScript Host Import Path (#116)
Browse files Browse the repository at this point in the history
* Adding `index.ts` for scalefunc and log packages in typescript

Signed-off-by: Shivansh Vij <shivanshvij@loopholelabs.io>

* Updating CHANGELOG.md

Signed-off-by: Shivansh Vij <shivanshvij@loopholelabs.io>

---------

Signed-off-by: Shivansh Vij <shivanshvij@loopholelabs.io>
  • Loading branch information
ShivanshVij authored Oct 11, 2023
1 parent 233e230 commit 14fd4b4
Show file tree
Hide file tree
Showing 6 changed files with 41 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

### Fixes

- Added an `index.ts` file to the `scalefunc` and `log` packages in TypeScript to make importing them more ergonomic

## [v0.4.5] - 2023-10-09

### Features
Expand Down
2 changes: 1 addition & 1 deletion integration/integration.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
limitations under the License.
*/

import { ScaleFunc } from "../scalefunc/scalefunc";
import { ScaleFunc } from "../scalefunc";
import { New as NewScale } from "../scale";

import fs from "fs";
Expand Down
17 changes: 17 additions & 0 deletions log/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
/*
Copyright 2022 Loophole Labs
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

export * from "./log";
2 changes: 1 addition & 1 deletion log/log.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
limitations under the License.
*/

import {Writer} from "../config";
import {Writer} from "scale";

export function NamedLogger(name: string, writer: Writer): Writer {
return (message: string) => {
Expand Down
2 changes: 1 addition & 1 deletion module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import {UnpackUint32} from "./utils";
import {Decoder} from "@loopholelabs/polyglot";
import {DisabledWASI} from "./wasi";
import {v4 as uuid} from "uuid";
import {NamedLogger} from "./log/log";
import {NamedLogger} from "./log";
import {Tracing} from "./tracing";

export async function NewModule<T extends Signature>(template: Template<T>): Promise<Module<T>> {
Expand Down
17 changes: 17 additions & 0 deletions scalefunc/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
/*
Copyright 2022 Loophole Labs
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

export * from "./scalefunc";

0 comments on commit 14fd4b4

Please sign in to comment.