forked from fedora-infra/anitya
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve the dependency management for javascript dependencies
This commit will add npm for dependency management of javascript dependencies. Most of the static folder was restructured. Unfortunately this updates some of the packages to newer versions, which needs templates adjusted. Because of this Bootstrap 3 -> Bootstrap 5 migration is part of this commit. As part of the Bootstrap migration there is a cleanup of unused templates. It also updates documentation to reflect this new change and updates both dev environments to use the npm installed packages. Closes fedora-infra#1504 Signed-off-by: Michal Konečný <[email protected]>
- Loading branch information
Showing
61 changed files
with
1,287 additions
and
17,373 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,48 @@ | ||
# Python | ||
*.pyc | ||
build/ | ||
dist/ | ||
docs/_build/ | ||
docs/docblocks/ | ||
*egg-info/ | ||
*eggs/ | ||
*.cfg | ||
!mypy.cfg | ||
*.sqlite | ||
*~ | ||
*.swp | ||
*.swo | ||
start-pkgdb | ||
.cache/ | ||
.coverage | ||
cnucnu/ | ||
*.egg | ||
anitya-env | ||
.tox | ||
.idea/ | ||
.vagrant/ | ||
*.retry | ||
anitya.db | ||
client_secrets.json | ||
oidc_credentials.json | ||
anitya/static/docs/ | ||
.pytest_cache/ | ||
coverage.xml | ||
htmlcov | ||
pip-wheel-metadata/ | ||
venv/ | ||
.venv/ | ||
|
||
# Docs | ||
anitya/static/docs/ | ||
docs/_build/ | ||
docs/docblocks/ | ||
|
||
# Anitya | ||
anitya.db | ||
*.sqlite | ||
*.cfg | ||
|
||
# Tests | ||
coverage.xml | ||
htmlcov | ||
.pytest_cache/ | ||
.tox | ||
.coverage | ||
!mypy.cfg | ||
|
||
# IDE related files | ||
.vscode/ | ||
.idea/ | ||
*~ | ||
*.swp | ||
*.swo | ||
|
||
# Vagrant dev environment | ||
.vagrant/ | ||
|
||
# Container dev environment | ||
.container/postgresql/* | ||
.container/dump/* | ||
!.container/postgresql/.gitkeep | ||
|
||
# Javascript | ||
anitya/static/node_modules/ |
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 was deleted.
Oops, something went wrong.
Oops, something went wrong.