Skip to content

Commit c4d4b41

Browse files
[PackageToJS] Package TypeScript type definitions for runtime
1 parent 7751f9c commit c4d4b41

File tree

4 files changed

+265
-4
lines changed

4 files changed

+265
-4
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,4 @@ perf-tester:
3939
.PHONY: regenerate_swiftpm_resources
4040
regenerate_swiftpm_resources:
4141
npm run build
42-
cp Runtime/lib/index.js Runtime/lib/index.mjs Sources/JavaScriptKit/Runtime
42+
cp Runtime/lib/index.js Runtime/lib/index.mjs Runtime/lib/index.d.ts Sources/JavaScriptKit/Runtime

Plugins/PackageToJS/Sources/PackageToJS.swift

+1
Original file line numberDiff line numberDiff line change
@@ -567,6 +567,7 @@ struct PackagingPlanner {
567567
("Plugins/PackageToJS/Templates/platforms/node.js", "platforms/node.js"),
568568
("Plugins/PackageToJS/Templates/platforms/node.d.ts", "platforms/node.d.ts"),
569569
("Sources/JavaScriptKit/Runtime/index.mjs", "runtime.js"),
570+
("Sources/JavaScriptKit/Runtime/index.d.ts", "runtime.d.ts"),
570571
] {
571572
packageInputs.append(
572573
planCopyTemplateFile(

Plugins/PackageToJS/Templates/instantiate.d.ts

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
/* #if USE_SHARED_MEMORY */
2-
import type { SwiftRuntimeThreadChannel, SwiftRuntime } from "./runtime.js";
3-
/* #endif */
1+
import type { /* #if USE_SHARED_MEMORY */SwiftRuntimeThreadChannel, /* #endif */SwiftRuntime } from "./runtime.js";
42

53
export type Import = {
64
// TODO: Generate type from imported .d.ts files

Sources/JavaScriptKit/Runtime/index.d.ts

+262
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)