aboutsummaryrefslogtreecommitdiffstats
path: root/pkgs/sources/tree-sitter-yts/bindings/node/index.js
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-05-23 13:26:22 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-05-23 13:26:22 +0200
commit204731c0a69136c9cebcb54f1afecf5145e26bbe (patch)
treefc9132e5dc74e4a8e1327cdd411839a90f9410aa /pkgs/sources/tree-sitter-yts/bindings/node/index.js
parentrefactor(sys): Modularize and move to `modules/system` or `pkgs` (diff)
downloadnixos-config-204731c0a69136c9cebcb54f1afecf5145e26bbe.zip
refactor(pkgs): Categorize into `by-name` shards
This might not be the perfect way to organize a package set -- especially if the set is not nearly the size of nixpkgs -- but it is _at_ least a way of organization.
Diffstat (limited to 'pkgs/sources/tree-sitter-yts/bindings/node/index.js')
-rw-r--r--pkgs/sources/tree-sitter-yts/bindings/node/index.js19
1 files changed, 0 insertions, 19 deletions
diff --git a/pkgs/sources/tree-sitter-yts/bindings/node/index.js b/pkgs/sources/tree-sitter-yts/bindings/node/index.js
deleted file mode 100644
index 32179742..00000000
--- a/pkgs/sources/tree-sitter-yts/bindings/node/index.js
+++ /dev/null
@@ -1,19 +0,0 @@
-try {
- module.exports = require("../../build/Release/tree_sitter_yts_binding");
-} catch (error1) {
- if (error1.code !== "MODULE_NOT_FOUND") {
- throw error1;
- }
- try {
- module.exports = require("../../build/Debug/tree_sitter_yts_binding");
- } catch (error2) {
- if (error2.code !== "MODULE_NOT_FOUND") {
- throw error2;
- }
- throw error1;
- }
-}
-
-try {
- module.exports.nodeTypeInfo = require("../../src/node-types.json");
-} catch (_) {}