node-red-contrib-powerbi
Version:
A PowerBI API interaction node-red module which allows to interact with PowerBI service.
39 lines (29 loc) • 713 B
Plain Text
node_version:=$(shell node -v)
npm_version:=$(shell npm -v)
timeStamp:=$(shell date +%Y%m%d%H%M%S)
show:
@ echo Timestamp: "$(timeStamp)"
@ echo Node Version: $(node_version)
@ echo npm_version: $(npm_version)
install:
@ npm install
build:
echo "building in production mode"
@ npm run build --prod
bump:
npm version patch
npm publish
archive:
@ tar -czvf "dosetup-$(timeStamp).tar.gz" dist
test:
echo "test the app"
@ npm run test
clean:
echo "cleaning the dist directory"
@ rm -rf dist
@ rm -rf dist.tar.gz
INFO := @bash -c '\
printf $(YELLOW); \
echo "=> $$1"; \
printf $(NC)' SOME_VALUE