From 17dfb65d96e84f2ce847c6937226a77d0b98b583 Mon Sep 17 00:00:00 2001 From: Duc Trung Le Date: Fri, 5 Apr 2024 10:13:55 +0200 Subject: [PATCH] Skip `check_npm` --- pyproject.toml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 8a3f29f..63dbff3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,10 +7,10 @@ dependencies = [ "aiodocker~=0.19", "dockerspawner~=12.1", "jupyter_client>=6.1,<8", - "httpx" + "httpx", ] dynamic = ["version"] -license = {file = "LICENSE"} +license = { file = "LICENSE" } name = "tljh-repo2docker" readme = "README.md" @@ -52,14 +52,14 @@ build_dir = "tljh_repo2docker/static/js" npm = ["npm"] source_dir = "src" +[tool.jupyter-releaser] +skip = ["check_npm"] + [tool.jupyter-releaser.options] version_cmd = "hatch version" [tool.jupyter-releaser.hooks] -before-build-npm = [ - "npm install", - "npm run build:prod", -] +before-build-npm = ["npm install", "npm run build:prod"] before-build-python = ["npm run clean"] before-bump-version = ["python -m pip install hatch"]