-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: rename package from 'sbr' to 'route_rules'
- Updates all imports, file paths, and references to use new package name - Maintains existing functionality while improving naming clarity - Updates documentation and configuration files to reflect new name
- Loading branch information
Showing
68 changed files
with
1,261 additions
and
806 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,9 @@ | ||
#!/bin/bash | ||
watch_file uv.lock | ||
if [[ ! -f .venv/bin/activate ]]; then | ||
uv sync --all-extras | ||
watch_file "pyproject.toml" "uv.toml" "uv.lock" | ||
if [[ ! -f ".venv/bin/activate" ]]; then | ||
uv sync --all-extras --all-groups | ||
fi | ||
sed --in-place "s/include-system-site-packages = false/include-system-site-packages = true/" .venv/pyvenv.cfg | ||
# shellcheck disable=SC2016 | ||
sd '^(\s*)?(?P<key>include-system-site-packages)(\s*)?=(\s*)?(?<val>.*)$' '$key = true' .venv/pyvenv.cfg | ||
# shellcheck disable=SC1091 | ||
source .venv/bin/activate | ||
uv export --all-extras --no-dev --no-hashes --output-file requirements.lock | ||
uv export --all-extras --no-hashes --output-file requirements-dev.lock |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,12 @@ | ||
# Changes here will be overwritten by Copier; NEVER EDIT MANUALLY | ||
_commit: bfed6ec | ||
# This file is @generated by <https://github.com/liblaf/copier-python>. | ||
# DO NOT EDIT! | ||
# prettier-ignore | ||
_commit: d1b439c | ||
_src_path: gh:liblaf/copier-python | ||
author: liblaf | ||
email: [email protected] | ||
license: MIT | ||
name: route-rules | ||
owner: liblaf | ||
package_manager: uv | ||
repo: route-rules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# This file is @generated by <https://github.com/liblaf/copier-release>. | ||
# DO NOT EDIT! | ||
# prettier-ignore | ||
_commit: 34694b2 | ||
_src_path: gh:liblaf/copier-release | ||
release_type: python |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# This file is @generated by <https://github.com/liblaf/copier-shared>. | ||
# DO NOT EDIT! | ||
# prettier-ignore | ||
_commit: 25684d3 | ||
_src_path: gh:liblaf/copier-share | ||
copyright_holder: liblaf | ||
license: MIT | ||
owner: liblaf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
{ | ||
"$schema": "https://github.com/googleapis/release-please/raw/refs/heads/main/schemas/config.json", | ||
"release-type": "python", | ||
"bump-minor-pre-major": true, | ||
"bump-patch-for-minor-pre-major": true, | ||
"changelog-sections": [ | ||
{ | ||
"type": "feat", | ||
"section": "✨ Features" | ||
}, | ||
{ | ||
"type": "feature", | ||
"section": "✨ Features" | ||
}, | ||
{ | ||
"type": "fix", | ||
"scope": "deps", | ||
"section": "⬆️ Dependencies" | ||
}, | ||
{ | ||
"type": "fix", | ||
"scope": "deps-dev", | ||
"section": "⬆️ Dependencies" | ||
}, | ||
{ | ||
"type": "build", | ||
"scope": "deps", | ||
"section": "⬆️ Dependencies" | ||
}, | ||
{ | ||
"type": "build", | ||
"scope": "deps-dev", | ||
"section": "⬆️ Dependencies" | ||
}, | ||
{ | ||
"type": "chore", | ||
"scope": "deps", | ||
"section": "⬆️ Dependencies" | ||
}, | ||
{ | ||
"type": "chore", | ||
"scope": "deps-dev", | ||
"section": "⬆️ Dependencies" | ||
}, | ||
{ | ||
"type": "fix", | ||
"section": "🐛 Bug Fixes" | ||
}, | ||
{ | ||
"type": "perf", | ||
"section": "⚡ Performance Improvements" | ||
}, | ||
{ | ||
"type": "revert", | ||
"section": "⏪ Reverts" | ||
}, | ||
{ | ||
"type": "docs", | ||
"section": "📝 Documentation" | ||
}, | ||
{ | ||
"type": "style", | ||
"section": "💄 Styles" | ||
}, | ||
{ | ||
"type": "chore", | ||
"section": "🎫 Chores", | ||
"hidden": true | ||
}, | ||
{ | ||
"type": "refactor", | ||
"section": "♻ Code Refactoring" | ||
}, | ||
{ | ||
"type": "test", | ||
"section": "✅ Tests" | ||
}, | ||
{ | ||
"type": "build", | ||
"section": "👷 Build System" | ||
}, | ||
{ | ||
"type": "ci", | ||
"section": "🔧 Continuous Integration" | ||
} | ||
], | ||
"include-component-in-tag": false, | ||
"initial-version": "0.0.0", | ||
"packages": { | ||
".": {} | ||
} | ||
} |
Oops, something went wrong.