Skip to content

Commit

Permalink
use relative paths to node bin scripts, removing npx
Browse files Browse the repository at this point in the history
  • Loading branch information
silverwind committed May 15, 2019
1 parent 3ebbfb1 commit 119b725
Showing 1 changed file with 12 additions and 9 deletions.
21 changes: 12 additions & 9 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ endif
BINDATA := modules/{options,public,templates}/bindata.go
GOFILES := $(shell find . -name "*.go" -type f ! -path "./vendor/*" ! -path "*/bindata.go")
GOFMT ?= gofmt -s
NODE_BIN := $(PWD)/node_modules/.bin

GOFLAGS := -i -v
EXTRA_GOFLAGS ?=
Expand Down Expand Up @@ -367,22 +368,24 @@ release-compress:

.PHONY: js
js:
@hash npx > /dev/null 2>&1; if [ $$? -ne 0 ]; then \
echo "Please install npm version 5.2+"; \
@if ([ ! -d "$(NODE_BIN)" ]); then \
echo "node_modules directory is absent, please run 'npm install' first"; \
exit 1; \
fi;
npx eslint public/js

$(NODE_BIN)/eslint public/js

.PHONY: css
css:
@hash npx > /dev/null 2>&1; if [ $$? -ne 0 ]; then \
echo "Please install npm version 5.2+"; \
@if ([ ! -d "$(NODE_BIN)" ]); then \
echo "node_modules directory is absent, please run 'npm install' first"; \
exit 1; \
fi;
npx lesshint public/less/
npx -p less lessc --clean-css="--s0 -b" public/less/index.less public/css/index.css
$(foreach file, $(filter-out public/less/themes/_base.less, $(wildcard public/less/themes/*)),npx -p less lessc --clean-css="--s0 -b" public/less/themes/$(notdir $(file)) > public/css/theme-$(notdir $(call strip-suffix,$(file))).css;)
npx postcss --use autoprefixer --no-map --replace public/css/*

$(NODE_BIN)/lesshint public/less/
$(NODE_BIN)/lessc --clean-css="--s0 -b" public/less/index.less public/css/index.css
$(foreach file, $(filter-out public/less/themes/_base.less, $(wildcard public/less/themes/*)),$(NODE_BIN)/lessc --clean-css="--s0 -b" public/less/themes/$(notdir $(file)) > public/css/theme-$(notdir $(call strip-suffix,$(file))).css;)
$(NODE_BIN)/postcss --use autoprefixer --no-map --replace public/css/*

@diff=$$(git diff public/css/*); \
if ([ ! -z "$CI" ] && [ -n "$$diff" ]); then \
Expand Down

0 comments on commit 119b725

Please sign in to comment.