loading up the forgejo repo on tangled to test page performance
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Clean up pyproject.toml and package.json, fix poetry options (#25327)

- Reduce `pyproject.toml` and `package.json` to the minimal required
format, removing unneeded properties. `build-system` is not needed as
per
[this](https://github.com/python-poetry/poetry/issues/8110#issuecomment-1595846841).
- Fix `poetry.toml` options they were wrong previously.
- Add dependencies of poetry files to templates `files-changed`.

---------

Co-authored-by: Giteabot <teabot@gitea.io>

authored by

silverwind
Giteabot
and committed by
GitHub
1a0a2054 bfab129f

+3 -11
+1
.github/workflows/files-changed.yml
··· 58 58 59 59 templates: 60 60 - "templates/**/*.tmpl" 61 + - "poetry.lock"
-2
package-lock.json
··· 4 4 "requires": true, 5 5 "packages": { 6 6 "": { 7 - "name": "gitea", 8 - "license": "MIT", 9 7 "dependencies": { 10 8 "@citation-js/core": "0.6.8", 11 9 "@citation-js/plugin-bibtex": "0.6.8",
-3
package.json
··· 1 1 { 2 - "name": "gitea", 3 - "license": "MIT", 4 - "private": true, 5 2 "type": "module", 6 3 "engines": { 7 4 "node": ">= 16.0.0"
+2 -2
poetry.toml
··· 1 1 [virtualenvs] 2 2 in-project = true 3 - no-pip = true 4 - no-setuptools = true 3 + options.no-pip = true 4 + options.no-setuptools = true
-4
pyproject.toml
··· 13 13 [tool.djlint] 14 14 profile="golang" 15 15 ignore="H005,H006,H008,H013,H014,H016,H020,H021,H023,H026,H030,H031,T027" 16 - 17 - [build-system] 18 - requires = ["poetry-core"] 19 - build-backend = "poetry.core.masonry.api"