From aedf0e0755b64f0bfb7cfb96f01dc9099e47e0e5 Mon Sep 17 00:00:00 2001 From: Typed SIGTERM Date: Mon, 16 Feb 2026 00:16:11 +0800 Subject: [PATCH 1/5] add issue template config --- .github/ISSUE_TEMPLATE/config.yml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/config.yml diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 0000000..6b94f90 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,5 @@ +blank_issues_enabled: false +contact_links: + - name: All other issues + url: https://www.sqlite.org/src/wiki?name=Bug+Reports + about: View the SQLite bug filing instructions to find the right place. From 6cb9b52ba0aa115713234e47a33f223ace643cdf Mon Sep 17 00:00:00 2001 From: Typed SIGTERM Date: Mon, 16 Feb 2026 00:23:02 +0800 Subject: [PATCH 2/5] add issue template --- .github/ISSUE_TEMPLATE/typescript.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/typescript.yml diff --git a/.github/ISSUE_TEMPLATE/typescript.yml b/.github/ISSUE_TEMPLATE/typescript.yml new file mode 100644 index 0000000..883319f --- /dev/null +++ b/.github/ISSUE_TEMPLATE/typescript.yml @@ -0,0 +1,16 @@ +name: TypeScript types +description: Bug reports and feature requests about TypeScript types. +body: + - type: dropdown + attributes: + label: Type + options: + - Bug Report + - Feature Request + validations: + required: true + - type: textarea + attributes: + label: Description + validations: + required: true From 30a7d05fe7d2305937fb426abd31b429bde89074 Mon Sep 17 00:00:00 2001 From: Typed SIGTERM Date: Mon, 16 Feb 2026 00:24:32 +0800 Subject: [PATCH 3/5] remove instructions from README --- README.md | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/README.md b/README.md index 78cedcb..db53d82 100644 --- a/README.md +++ b/README.md @@ -2,18 +2,6 @@ SQLite Wasm conveniently wrapped as an ES Module. -## Bug reports - -> [!Warning] -> -> This project wraps the code of -> [SQLite Wasm](https://sqlite.org/wasm/doc/trunk/index.md) with _no_ changes, -> apart from added TypeScript types. Please do _not_ file issues or feature -> requests regarding the underlying SQLite Wasm code here. Instead, please -> follow the -> [SQLite bug filing instructions](https://www.sqlite.org/src/wiki?name=Bug+Reports). -> Filing TypeScript type related issues and feature requests is fine. - ## Node.js support > [!Warning] From ace3bdbf37a620821be1ef77ce7acea69f8fdb45 Mon Sep 17 00:00:00 2001 From: Thomas Steiner Date: Mon, 16 Feb 2026 01:53:46 -0800 Subject: [PATCH 4/5] Update README with issue filing instructions Added warning about filing issues related to SQLite Wasm code. --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index db53d82..d95740d 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,16 @@ SQLite Wasm conveniently wrapped as an ES Module. +> [!Warning] +> +> This project wraps the code of +> [SQLite Wasm](https://sqlite.org/wasm/doc/trunk/index.md) with _no_ changes, +> apart from added TypeScript types. Please do _not_ file issues or feature +> requests regarding the underlying SQLite Wasm code here. Instead, please +> follow the +> [SQLite bug filing instructions](https://www.sqlite.org/src/wiki?name=Bug+Reports). +> Filing TypeScript type related issues and feature requests is fine. + ## Node.js support > [!Warning] From b8dc585fcdf211c627bcbdc9cd60d382762d29a4 Mon Sep 17 00:00:00 2001 From: Thomas Steiner Date: Mon, 16 Feb 2026 01:54:23 -0800 Subject: [PATCH 5/5] Add bug reports section to README Add a section for bug reports in README --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index d95740d..78cedcb 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,8 @@ SQLite Wasm conveniently wrapped as an ES Module. +## Bug reports + > [!Warning] > > This project wraps the code of