summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAdam Zapletal <adamzap@gmail.com>2024-12-17 15:39:13 -0600
committerGitHub <noreply@github.com>2024-12-17 22:39:13 +0100
commit86dbff9d17882294752aff43484a7c7c9f81e2f0 (patch)
treedd36a0f31abf792316039864b33b76e62cf25797 /Makefile
parent432f85945e8138b9be7dce7db1ca71421fe231cb (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. This is a redo of 98e20a08b69597d9e0c081c20809007b3e363407 which was reverted because it led to errors in production when running collectstatic. 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