Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions python/cppjswasm/pyproject.toml.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,10 @@ current_version = "0.1.0"
commit = true
tag = true
commit_args = "-s"
pre_commit_hooks = [
"pnpm --dir js install --lockfile-only --no-frozen-lockfile --ignore-scripts",
"git add js/pnpm-lock.yaml",
]

[[tool.bumpversion.files]]
filename = "{{ module }}/__init__.py"
Expand Down
4 changes: 4 additions & 0 deletions python/js/pyproject.toml.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,10 @@ current_version = "0.1.0"
commit = true
tag = true
commit_args = "-s"
pre_commit_hooks = [
"pnpm --dir js install --lockfile-only --no-frozen-lockfile --ignore-scripts",
"git add js/pnpm-lock.yaml",
]

[[tool.bumpversion.files]]
filename = "{{ module }}/__init__.py"
Expand Down
4 changes: 4 additions & 0 deletions python/jupyter/pyproject.toml.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,10 @@ current_version = "0.1.0"
commit = true
tag = true
commit_args = "-s"
pre_commit_hooks = [
"pnpm --dir js install --lockfile-only --no-frozen-lockfile --ignore-scripts",
"git add js/pnpm-lock.yaml",
]

[[tool.bumpversion.files]]
filename = "{{ module }}/__init__.py"
Expand Down
4 changes: 4 additions & 0 deletions python/rust/pyproject.toml.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,10 @@ current_version = "0.1.0"
commit = true
tag = true
commit_args = "-s"
pre_commit_hooks = [
"cargo update --workspace",
"git add Cargo.lock",
]

[[tool.bumpversion.files]]
filename = "{{ module }}/__init__.py"
Expand Down
5 changes: 5 additions & 0 deletions python/rustjswasm/pyproject.toml.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,11 @@ current_version = "0.1.0"
commit = true
tag = true
commit_args = "-s"
pre_commit_hooks = [
"cargo update --workspace",
"pnpm --dir js install --lockfile-only --no-frozen-lockfile --ignore-scripts",
"git add Cargo.lock js/pnpm-lock.yaml",
]

[[tool.bumpversion.files]]
filename = "{{ module }}/__init__.py"
Expand Down
Loading