fix(ui): fix build

This commit is contained in:
Łukasz Mierzwa
2022-12-19 09:22:09 +00:00
committed by Łukasz Mierzwa
parent a118937079
commit d82ed046d7

View File

@@ -3,8 +3,8 @@
# based on http://blog.jgc.org/2011/07/gnu-make-recursive-wildcard-function.html
rwildcard = $(foreach d, $(wildcard $1*), $(call rwildcard,$d/,$2) $(filter $(subst *,%,$2),$d))
NODE_PATH := $(shell npm bin)
NODE_MODULES := $(shell dirname `npm bin`)
NODE_PATH := $(shell npm root)/.bin
NODE_MODULES := $(shell npm root)
NODE_INSTALL := $(NODE_MODULES)/.install
PATH := $(PATH):$(NODE_PATH)