refactor(web): rename tree-sitter.js to web-tree-sitter.js

This is not breaking for consumers of the web bindings, nor the
playground as both filenames will be kept in the .github.io repo
This commit is contained in:
Amaan Qureshi 2025-02-08 13:06:44 -05:00
parent 74d7ca8582
commit a40265cbeb
19 changed files with 853 additions and 374 deletions

View file

@ -1,4 +1,4 @@
import createModule, { type MainModule } from '../lib/tree-sitter';
import createModule, { type MainModule } from '../lib/web-tree-sitter';
// eslint-disable-next-line @typescript-eslint/no-unused-vars
import { type Parser } from './parser';

View file

@ -1,4 +1,4 @@
import { type MainModule } from '../lib/tree-sitter';
import { type MainModule } from '../lib/web-tree-sitter';
// eslint-disable-next-line @typescript-eslint/no-unused-vars
import { ParseState, type Parser } from './parser';