From 692bf89b4b0ed2607c7f4a58f5a59762466e4a39 Mon Sep 17 00:00:00 2001 From: Antonio Pintus Date: Thu, 31 Jan 2019 12:56:17 +0100 Subject: [PATCH] build(examples): improve build for examples --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index a7b1b0f..2dec3de 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,7 @@ "clean:all": "npm run clean && rimraf node_modules", "prebuild": "rimraf dist", "build": "tsc", - "build:examples": "tsc -p examples && (cd examples/lambda-bot-manager && npm i && npm run build) && (cd examples/lambda-bot-filter && npm i && npm run build)", + "build:examples": "(cd examples/lambda-bot-manager && npm i && npm run build) && (cd examples/lambda-bot-filter && npm i && npm run build) && (tsc -p examples)", "build:all": "npm run build && tsc -p test && npm run build:examples", "commit": "git-cz", "check-coverage": "./node_modules/.bin/nyc check-coverage --statements 90 --branches 60 --functions 80 --lines 90",