summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAdam Zapletal <adamzap@gmail.com>2024-12-17 14:52:41 -0600
committerGitHub <noreply@github.com>2024-12-17 21:52:41 +0100
commit98e20a08b69597d9e0c081c20809007b3e363407 (patch)
treec819e33479317a99f9cbdf2a95aef7f9a88ed47e /Makefile
parent260bf7daec896b074005679787603ec66aaf3093 (diff)
Removed bower
`bower` is maintained but not recommended for use by its developers. Our `bower.json` file now only includes two dependencies: `jquery` and `jquery-flot`. At this point, `bower` is not doing much to serve the project. Refs #1827
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 0 insertions, 9 deletions
diff --git a/Makefile b/Makefile
index ffe717fc..fea80deb 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,6 @@
.PHONY: all ci clean collectstatics compile-scss compile-scss-debug install run test watch-scss
APP_LIST ?= accounts aggregator blog contact dashboard djangoproject docs foundation fundraising legacy members releases svntogit tracdb
-JQUERY_FLOT=djangoproject/static/js/lib/jquery-flot
SCSS = djangoproject/scss
STATIC = djangoproject/static
@@ -19,7 +18,6 @@ compile-scss-debug:
install:
python -m pip install --requirement requirements/dev.txt
- npm install
isort:
python -m isort $(APP_LIST)
@@ -27,13 +25,6 @@ isort:
isort-check:
python -m isort --check $(APP_LIST)
-$(JQUERY_FLOT)/:
- npm run bower install
-
-$(JQUERY_FLOT)/jquery.flot.min.js: $(JQUERY_FLOT)
- cat $(JQUERY_FLOT)/jquery.flot.js $(JQUERY_FLOT)/jquery.flot.time.js > $(JQUERY_FLOT)/jquery.flot.concat.js
- yuicompressor $(JQUERY_FLOT)/jquery.flot.concat.js -o $(JQUERY_FLOT)/jquery.flot.min.js
-
migrations-check:
python -m manage makemigrations --check --dry-run