Skip to content
Open
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
1 change: 1 addition & 0 deletions .tool-versions
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
python 3.8.18
nodejs 24.7.0
poetry 1.8.5
java corretto-11.0.26.4.1
107 changes: 56 additions & 51 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,51 +1,56 @@
SHELL=/bin/bash -euo pipefail

install: install-node install-python install-hooks

install-python:
poetry install

install-node:
npm install

install-hooks:
cp scripts/pre-commit .git/hooks/pre-commit

test:
@echo disable for spec only

black:
poetry run black .

black-check:
poetry run black . --check

ruff: black
poetry run ruff check --fix --show-fixes .

ruff-check:
poetry run ruff check .

ruff-ci:
poetry run ruff check --output-format=github .

lint: ruff
npm run lint

publish:
npm run publish 2> /dev/null

clean:
rm -rf build
rm -rf dist

check-licenses:
npm run check-licenses
scripts/check_python_licenses.sh

format:
poetry run black **/*.py

release: clean publish
mkdir -p dist
cp -r build/. dist
SHELL=/bin/bash -euo pipefail

install: install-node install-python install-hooks

update:
poetry update
npm update

install-python:
poetry install

install-node:
npm install

install-hooks:
cp scripts/pre-commit .git/hooks/pre-commit

test:
@echo disable for spec only

black:
poetry run black .

black-check:
poetry run black . --check

ruff: black
poetry run ruff check --fix --show-fixes .

ruff-check:
poetry run ruff check .

ruff-ci:
poetry run ruff check --output-format=github .

lint:
ruff check
npm run lint

publish:
npm run publish 2> /dev/null

clean:
rm -rf build
rm -rf dist

check-licenses:
npm run check-licenses
scripts/check_python_licenses.sh

format:
poetry run black **/*.py

release: clean publish
mkdir -p dist
cp -r build/. dist
82 changes: 37 additions & 45 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

48 changes: 24 additions & 24 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading