1fbfccb4fc
* Use standard lessc and minify CSS using Node.js This changes the previous nonstandard `lessc` to the official one and enables CSS minification via the clean-css module. To build CSS, Node.js is required along with a `npm install` to get the tools installed locally in node_modules so there is no dependency on binaries in PATH. Benefits include: - Allows one to have a standard lessc in PATH. - Can now use command line switches on lessc. - Minified CSS brings faster page load times and also has the benefit of discouraging contributors from editing CSS directly. To build CSS, Node.js is required along with a `npm install` to get the tools installed locally based on the information in `package.json`. The 'make stylesheet' task was modified to run without condition. This makes it easier to work on the make task itself without having to delete files. Also fixes: https://github.com/go-gitea/gitea/issues/2198 * install node, npm and modules on drone * .PHONY * use 'minify' to minify CSS
61 lines
790 B
Text
61 lines
790 B
Text
# Compiled Object files, Static and Dynamic libs (Shared Objects)
|
|
*.o
|
|
*.a
|
|
*.so
|
|
|
|
# Folders
|
|
_obj
|
|
_test
|
|
|
|
# IntelliJ
|
|
.idea
|
|
|
|
# MS VSCode
|
|
.vscode
|
|
|
|
# Architecture specific extensions/prefixes
|
|
*.[568vq]
|
|
[568vq].out
|
|
|
|
*.cgo1.go
|
|
*.cgo2.c
|
|
_cgo_defun.c
|
|
_cgo_gotypes.go
|
|
_cgo_export.*
|
|
|
|
_testmain.go
|
|
|
|
*.exe
|
|
*.test
|
|
*.prof
|
|
|
|
*coverage.out
|
|
coverage.all
|
|
|
|
/modules/options/bindata.go
|
|
/modules/public/bindata.go
|
|
/modules/templates/bindata.go
|
|
|
|
*.db
|
|
*.log
|
|
|
|
/gitea
|
|
/debug
|
|
/integrations.test
|
|
|
|
/bin
|
|
/dist
|
|
/custom
|
|
/data
|
|
/indexers
|
|
/log
|
|
/public/img/avatar
|
|
/integrations/gitea-integration-mysql
|
|
/integrations/gitea-integration-pgsql
|
|
/integrations/gitea-integration-sqlite
|
|
/integrations/indexers-mysql
|
|
/integrations/indexers-pgsql
|
|
/integrations/indexers-sqlite
|
|
/integrations/mysql.ini
|
|
/integrations/pgsql.ini
|
|
/node_modules
|