Skip to content

Commit 285afb1

Browse files
authored
feat: include runtime from current directory instead of lib (#2884)
1 parent e763f78 commit 285afb1

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

NOTICE

+1
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ under the licensing terms detailed in LICENSE:
5858
* Xinquan Xu <[email protected]>
5959
* Matt Johnson-Pint <[email protected]>
6060
* Fabián Heredia Montiel <[email protected]>
61+
* Jonas Minnberg <[email protected]>
6162

6263
Portions of this software are derived from third-party works licensed under
6364
the following terms:

std/assembly/rt/index-incremental.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
import "rt/tlsf";
2-
import "rt/itcms";
1+
import "./tlsf";
2+
import "./itcms";

std/assembly/rt/index-minimal.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
import "rt/tlsf";
2-
import "rt/tcms";
1+
import "./tlsf";
2+
import "./tcms";

std/assembly/rt/index-stub.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
import "rt/stub";
1+
import "./stub";

0 commit comments

Comments
 (0)