Skip to content

Commit 62516e8

Browse files
build: include common files
1 parent 5520eaa commit 62516e8

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

Cargo.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "tree-sitter-md"
33
description = "Markdown grammar for tree-sitter"
4-
version = "0.2.2"
4+
version = "0.2.3"
55
license = "MIT"
66
readme = "README.md"
77
keywords = ["incremental", "parsing", "tree-sitter", "markdown"]
@@ -20,6 +20,8 @@ include = [
2020
"tree-sitter-markdown-inline/grammar.js",
2121
"tree-sitter-markdown/queries/*",
2222
"tree-sitter-markdown-inline/queries/*",
23+
"common/grammar.js",
24+
"common/html_entities.json",
2325
]
2426

2527
[lib]

common/common.mak

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tree-sitter-grammars/tree-sitter-markdown",
3-
"version": "0.2.2",
3+
"version": "0.2.3",
44
"description": "Markdown grammar for tree-sitter",
55
"repository": "github:tree-sitter-grammars/tree-sitter-markdown",
66
"author": "MDeiml (https://github.com/MDeiml)",
@@ -19,7 +19,9 @@
1919
"bindings/node/*",
2020
"tree-sitter-*/grammar.js",
2121
"tree-sitter-*/queries/*",
22-
"tree-sitter-*/src/**"
22+
"tree-sitter-*/src/**",
23+
"common/grammar.js",
24+
"common/html_entities.json"
2325
],
2426
"dependencies": {
2527
"node-addon-api": "^7.1.0",

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
55
[project]
66
name = "tree-sitter-markdown"
77
description = "Markdown grammar for tree-sitter"
8-
version = "0.2.2"
8+
version = "0.2.3"
99
keywords = ["incremental", "parsing", "tree-sitter", "markdown"]
1010
classifiers = [
1111
"Intended Audience :: Developers",

0 commit comments

Comments
 (0)