ikatyang / tree-sitter-yaml

YAML grammar for tree-sitter
https://ikatyang.github.io/tree-sitter-yaml/
MIT License
94 stars 38 forks source link

tree-sitter-yaml@0.4.0 - damanged npm package #20

Closed char0n closed 3 years ago

char0n commented 3 years ago

Steps to reproduce Use this javascript file to run

test.js

const Parser = require('tree-sitter');
const Yaml = require('tree-sitter-yaml');

const parser = new Parser();
parser.setLanguage(Yaml);

parser.parse('a: b');

Install latest library versions

 $ npm i tree-sitter
 $ npm i tree-sitter-yaml@0.4.0
 $ node test.js
char0n commented 3 years ago

I can confirm, I'm able to install and build it locally. Thanks!