diff options
author | wxiaoguang <wxiaoguang@gmail.com> | 2025-06-16 20:03:51 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-06-16 12:03:51 +0000 |
commit | 24ce2058e8159e2e66753b72c4e5ddd57d0e276f (patch) | |
tree | 321c6a57aa213bf57c088497585097882da96ec7 | |
parent | 6b8b5802185f8ba3cd2d0416cc5640fe758ea532 (diff) | |
download | gitea-24ce2058e8159e2e66753b72c4e5ddd57d0e276f.tar.gz gitea-24ce2058e8159e2e66753b72c4e5ddd57d0e276f.zip |
Clean bindata (#34728)
Follow #34692
-rw-r--r-- | .dockerignore | 9 | ||||
-rw-r--r-- | .ignore | 3 | ||||
-rw-r--r-- | Makefile | 4 | ||||
-rw-r--r-- | tailwind.config.js | 1 |
4 files changed, 2 insertions, 15 deletions
diff --git a/.dockerignore b/.dockerignore index 94aca6b8d3..843f12a7be 100644 --- a/.dockerignore +++ b/.dockerignore @@ -36,15 +36,6 @@ _testmain.go coverage.all cpu.out -/modules/migration/bindata.go -/modules/migration/bindata.go.hash -/modules/options/bindata.go -/modules/options/bindata.go.hash -/modules/public/bindata.go -/modules/public/bindata.go.hash -/modules/templates/bindata.go -/modules/templates/bindata.go.hash - *.db *.log @@ -1,9 +1,6 @@ *.min.css *.min.js /assets/*.json -/modules/options/bindata.go -/modules/public/bindata.go -/modules/templates/bindata.go /options/gitignore /options/license /public/assets @@ -120,7 +120,7 @@ WEBPACK_CONFIGS := webpack.config.js tailwind.config.js WEBPACK_DEST := public/assets/js/index.js public/assets/css/index.css WEBPACK_DEST_ENTRIES := public/assets/js public/assets/css public/assets/fonts -BINDATA_DEST := modules/public/bindata.dat modules/options/bindata.dat modules/templates/bindata.dat +BINDATA_DEST_WILDCARD := modules/migration/bindata.* modules/public/bindata.* modules/options/bindata.* modules/templates/bindata.* GENERATED_GO_DEST := modules/charset/invisible_gen.go modules/charset/ambiguous_gen.go @@ -219,7 +219,7 @@ clean-all: clean ## delete backend, frontend and integration files .PHONY: clean clean: ## delete backend and integration files - rm -rf $(EXECUTABLE) $(DIST) $(BINDATA_DEST) \ + rm -rf $(EXECUTABLE) $(DIST) $(BINDATA_DEST_WILDCARD) \ integrations*.test \ e2e*.test \ tests/integration/gitea-integration-* \ diff --git a/tailwind.config.js b/tailwind.config.js index fe285432f3..01740d816b 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -33,7 +33,6 @@ export default { '!./templates/swagger/v1_json.tmpl', '!./templates/user/auth/oidc_wellknown.tmpl', '!**/*_test.go', - '!./modules/{public,options,templates}/bindata.go', './{build,models,modules,routers,services}/**/*.go', './templates/**/*.tmpl', './web_src/js/**/*.{ts,js,vue}', |