diff options
author | Thomas Voss <mail@thomasvoss.com> | 2023-09-28 03:44:06 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2023-09-28 03:44:52 +0200 |
commit | 94b1b4ad12c8bb04fc9ff84b1b9c0a707ad675a6 (patch) | |
tree | f0e2bfad824935c2eb2e9fe22bec07164d038df2 /bindings/node/index.js |
Genesis commit
Diffstat (limited to 'bindings/node/index.js')
-rw-r--r-- | bindings/node/index.js | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/bindings/node/index.js b/bindings/node/index.js new file mode 100644 index 0000000..d0bc87e --- /dev/null +++ b/bindings/node/index.js @@ -0,0 +1,19 @@ +try { + module.exports = require("../../build/Release/tree_sitter_gsp_binding"); +} catch (error1) { + if (error1.code !== 'MODULE_NOT_FOUND') { + throw error1; + } + try { + module.exports = require("../../build/Debug/tree_sitter_gsp_binding"); + } catch (error2) { + if (error2.code !== 'MODULE_NOT_FOUND') { + throw error2; + } + throw error1 + } +} + +try { + module.exports.nodeTypeInfo = require("../../src/node-types.json"); +} catch (_) {} |