From 62516e8c78380e3b51d5b55727995d2c511436d8 Mon Sep 17 00:00:00 2001 From: ObserverOfTime Date: Fri, 22 Mar 2024 11:52:05 +0200 Subject: [PATCH] build: include common files --- Cargo.toml | 4 +++- common/common.mak | 2 +- package.json | 6 ++++-- pyproject.toml | 2 +- 4 files changed, 9 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 4db494c..6fd64ba 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "tree-sitter-md" description = "Markdown grammar for tree-sitter" -version = "0.2.2" +version = "0.2.3" license = "MIT" readme = "README.md" keywords = ["incremental", "parsing", "tree-sitter", "markdown"] @@ -20,6 +20,8 @@ include = [ "tree-sitter-markdown-inline/grammar.js", "tree-sitter-markdown/queries/*", "tree-sitter-markdown-inline/queries/*", + "common/grammar.js", + "common/html_entities.json", ] [lib] diff --git a/common/common.mak b/common/common.mak index 1ae13a5..cd7927a 100644 --- a/common/common.mak +++ b/common/common.mak @@ -1,4 +1,4 @@ -VERSION := 0.2.2 +VERSION := 0.2.3 # repository SRC_DIR := src diff --git a/package.json b/package.json index 255abba..6780ddb 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@tree-sitter-grammars/tree-sitter-markdown", - "version": "0.2.2", + "version": "0.2.3", "description": "Markdown grammar for tree-sitter", "repository": "github:tree-sitter-grammars/tree-sitter-markdown", "author": "MDeiml (https://github.com/MDeiml)", @@ -19,7 +19,9 @@ "bindings/node/*", "tree-sitter-*/grammar.js", "tree-sitter-*/queries/*", - "tree-sitter-*/src/**" + "tree-sitter-*/src/**", + "common/grammar.js", + "common/html_entities.json" ], "dependencies": { "node-addon-api": "^7.1.0", diff --git a/pyproject.toml b/pyproject.toml index 028a1d4..7b77490 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta" [project] name = "tree-sitter-markdown" description = "Markdown grammar for tree-sitter" -version = "0.2.2" +version = "0.2.3" keywords = ["incremental", "parsing", "tree-sitter", "markdown"] classifiers = [ "Intended Audience :: Developers",