mirror of
https://github.com/ful1e5/Bibata_Cursor.git
synced 2025-05-24 20:14:29 -04:00
🔨 Makefile & Changelogs
This commit is contained in:
parent
2b021d2321
commit
6ac32d13f3
2 changed files with 22 additions and 0 deletions
|
@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
- new **[copr](https://copr.fedorainfracloud.org/coprs/peterwu/rendezvous/package/bibata-cursor-themes/)** package by @peterwu
|
- new **[copr](https://copr.fedorainfracloud.org/coprs/peterwu/rendezvous/package/bibata-cursor-themes/)** package by @peterwu
|
||||||
|
- `.svg` files separated to `<root>/svg`
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
|
|
21
bitmapper/Makefile
Normal file
21
bitmapper/Makefile
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
all: install render
|
||||||
|
|
||||||
|
.PHONY: all
|
||||||
|
|
||||||
|
clean:
|
||||||
|
@find . -type f -name "yarn.lock" -exec rm -rf "{}" +;
|
||||||
|
@find . -type d -name "node_modules" -exec rm -rf "{}" +;
|
||||||
|
|
||||||
|
node_modules:
|
||||||
|
@mkdir -p $@
|
||||||
|
|
||||||
|
install: node_modules package.json
|
||||||
|
@yarn install
|
||||||
|
|
||||||
|
render_bibata_modern:
|
||||||
|
@yarn render:bibata-modern
|
||||||
|
|
||||||
|
render_bibata_original:
|
||||||
|
@yarn render:bibata-original
|
||||||
|
|
||||||
|
render: render_bibata_modern render_bibata_original
|
Loading…
Add table
Add a link
Reference in a new issue