From 2f71cd4c08bb4514efe43533e6a5d03535204c29 Mon Sep 17 00:00:00 2001 From: Aylur Date: Tue, 15 Oct 2024 01:26:32 +0200 Subject: refactor lua and gjs lib --- lang/gjs/index.ts | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 lang/gjs/index.ts (limited to 'lang/gjs/index.ts') diff --git a/lang/gjs/index.ts b/lang/gjs/index.ts new file mode 100644 index 0000000..4f52259 --- /dev/null +++ b/lang/gjs/index.ts @@ -0,0 +1,6 @@ +export * from "./lib/process.js" +export * from "./lib/time.js" +export * from "./lib/file.js" +export * from "./lib/gobject.js" +export { bind, default as Binding } from "./lib/binding.js" +export { Variable } from "./lib/variable.js" -- cgit v1.2.3 From bafd48d3df9b43a1d49ec015eff30619d595468b Mon Sep 17 00:00:00 2001 From: Aylur Date: Tue, 15 Oct 2024 13:25:45 +0000 Subject: update lua and gjs layout installing the gjs package through meson or npm now results in the same exposed structure lua: fix rockspec docs: aur package --- lang/gjs/index.ts | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'lang/gjs/index.ts') diff --git a/lang/gjs/index.ts b/lang/gjs/index.ts index 4f52259..46e72b1 100644 --- a/lang/gjs/index.ts +++ b/lang/gjs/index.ts @@ -1,6 +1 @@ -export * from "./lib/process.js" -export * from "./lib/time.js" -export * from "./lib/file.js" -export * from "./lib/gobject.js" -export { bind, default as Binding } from "./lib/binding.js" -export { Variable } from "./lib/variable.js" +export * from "./src" -- cgit v1.2.3