diff options
author | silverwind <me@silverwind.io> | 2020-10-28 22:51:03 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-28 21:51:03 +0000 |
commit | b64978d0bc82efd1c99d1200eff8bb592c91142f (patch) | |
tree | 89831412d3c64aadfb8d418976e2c96602beda33 | |
parent | 008627905d37c58ce4d593ad551c3af2c308d4b2 (diff) | |
download | gitea-b64978d0bc82efd1c99d1200eff8bb592c91142f.tar.gz gitea-b64978d0bc82efd1c99d1200eff8bb592c91142f.zip |
Fully remove fomantic-ui from frontend build dependencies (#13340)
Followup to https://github.com/go-gitea/gitea/pull/13332. Turns out I
missed this dependency which resulted in fomantic-ui being uselessly
rebuild on CI. This fully removes it from the chain so it's not
attempted to be build as part of the main build process.
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -94,7 +94,7 @@ FOMANTIC_CONFIGS := semantic.json web_src/fomantic/theme.config.less web_src/fom FOMANTIC_DEST := web_src/fomantic/build/semantic.js web_src/fomantic/build/semantic.css FOMANTIC_DEST_DIR := web_src/fomantic/build -WEBPACK_SOURCES := $(shell find web_src/js web_src/less -type f) $(FOMANTIC_DEST) +WEBPACK_SOURCES := $(shell find web_src/js web_src/less -type f) WEBPACK_CONFIGS := webpack.config.js WEBPACK_DEST := public/js/index.js public/css/index.css WEBPACK_DEST_ENTRIES := public/js public/css public/fonts public/img/webpack public/serviceworker.js |