From abe53acd48a97b0724616844b4d924c3d65b9f31 Mon Sep 17 00:00:00 2001 From: Joao Ribeiro Date: Sun, 22 May 2016 00:22:52 +0100 Subject: [PATCH] fix(build): build to root instead of dist folder --- .gitignore | 1 - .npmignore | 3 +-- package.json | 2 +- 3 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 85972cc..1b02627 100644 --- a/.gitignore +++ b/.gitignore @@ -14,7 +14,6 @@ coverage *.map *.d.ts typings -dist ################# ## JetBrains diff --git a/.npmignore b/.npmignore index 54f6ec2..6450b54 100644 --- a/.npmignore +++ b/.npmignore @@ -46,5 +46,4 @@ karma* typings tsconfig.json tslint.json -typings.json -src \ No newline at end of file +typings.json \ No newline at end of file diff --git a/package.json b/package.json index ec1744f..6eb33b4 100644 --- a/package.json +++ b/package.json @@ -35,7 +35,7 @@ "lint": "./node_modules/.bin/tslint ./src/*.ts ./src/**/*.ts", "test": "karma start", "commit": "git cz", - "build": "rm -rf ./dist/ && rm -rf ./typings/ && ./node_modules/.bin/typings install && tsc -d", + "build": "rm -rf ./typings/ && ./node_modules/.bin/typings install && tsc -d", "semantic-release": "semantic-release pre && npm run build && npm publish && semantic-release post" }, "main": "./index.js",