wickr-bedrock-bot
Version:
AWS Wickr's own Bedrock Bot
30 lines (22 loc) • 502 B
Plain Text
FILES = $(wildcard *.sh *.json *.yaml)
TS_FILES = $(wildcard *.ts)
SOURCES = $(FILES) node_modules img dist
build: clean software.tar.gz
dist: $(TS_FILES)
npm run build
software.tar.gz: $(SOURCES) patch
npm prune --production
tar cvzf software.tar.gz $(SOURCES)
node_modules:
npm i
clean:
rm -rf software.tar.gz node_modules/ dist/
test:
npm test
# TODO: Remove when this is fixed upstream
patch:
patch -p1 < mcp-server-aws-kb.patch