dotparser icon indicating copy to clipboard operation
dotparser copied to clipboard

Parser of GraphViz dot file format

Results 4 dotparser issues
Sort by recently updated
recently updated
newest added

Bumps [json5](https://github.com/json5/json5) from 2.2.1 to 2.2.3. Release notes Sourced from json5's releases. v2.2.3 Fix: [email protected] is now the 'latest' release according to npm instead of v1.0.2. (#299) v2.2.2 Fix: Properties...

dependencies

Bumps [cached-path-relative](https://github.com/ashaffer/cached-path-relative) from 1.0.2 to 1.1.0. Commits See full diff in compare view [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=cached-path-relative&package-manager=npm_and_yarn&previous-version=1.0.2&new-version=1.1.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter...

dependencies

I ended up copying the dotparser grammar to my own project, since I needed to add line number information and whitespace, newline and comment nodes to the ast and I...

I can not import dot content> 256 MB due to the string limitation in V8 (according to: https://stackoverflow.com/questions/40382268/error-tostring-failed-node-js-buffer ) My code: ``` fs.readFile(argv.f, 'utf8', function(err, data) { var graph =...