Compare commits
1 Commits
88ba0839b5
...
9a75a91df2
| Author | SHA1 | Date | |
|---|---|---|---|
| 9a75a91df2 |
@ -17,7 +17,7 @@ GIT_TAG = $(shell git describe --tags --exact-match 2>/dev/null)
|
|||||||
|
|
||||||
VERSION := $(or $(GIT_TAG),latest)
|
VERSION := $(or $(GIT_TAG),latest)
|
||||||
|
|
||||||
all : VERSION := 1.1.0
|
all : VERSION := 1.1.1
|
||||||
all : build release
|
all : build release
|
||||||
.PHONY : all
|
.PHONY : all
|
||||||
|
|
||||||
|
|||||||
@ -3,7 +3,7 @@
|
|||||||
|
|
||||||
__csscomb() {
|
__csscomb() {
|
||||||
__msg "Csscomb:"
|
__msg "Csscomb:"
|
||||||
local files="${1}"
|
local files=("$@")
|
||||||
|
|
||||||
if [[ ${DRY_RUN} -eq 0 ]]; then
|
if [[ ${DRY_RUN} -eq 0 ]]; then
|
||||||
csscomb -v "${files[@]}"
|
csscomb -v "${files[@]}"
|
||||||
|
|||||||
@ -3,7 +3,7 @@
|
|||||||
|
|
||||||
__prettier() {
|
__prettier() {
|
||||||
__msg "Prettier:"
|
__msg "Prettier:"
|
||||||
local files="${1}"
|
local files=("$@")
|
||||||
|
|
||||||
if [[ ${DRY_RUN} -eq 0 ]]; then
|
if [[ ${DRY_RUN} -eq 0 ]]; then
|
||||||
prettier --write "${files[@]}"
|
prettier --write "${files[@]}"
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user