pulumi/sdk/nodejs/Makefile
joeduffy 9ffbb8d755 Eliminate lumi, lumijs, and lumirt packages
This change gets rid of the old-style @pulumi/lumi, @pulumi/lumijs,
and @pulumi/lumirt packages.  Instead, we have the new Node.js SDK.
2017-09-04 11:35:20 -07:00

31 lines
482 B
Makefile

PROCCNT=$(shell nproc --all)
.PHONY: default
default: banner build install
.PHONY: banner
banner:
@echo "\033[1;37m==================\033[0m"
@echo "\033[1;37mPulumi Node.js SDK\033[0m"
@echo "\033[1;37m==================\033[0m"
.PHONY: lint
lint:
@echo "\033[0;32mLINT:\033[0m"
yarn run lint
.PHONY: clean
clean:
rm -rf ./bin
.PHONY: build
build:
@echo "\033[0;32mBUILD:\033[0m"
yarn run build
.PHONY: install
install:
@echo "\033[0;32mINSTALL:\033[0m"
yarn link