From eea61336fc9667c1ed93731d611a0a02b939d532 Mon Sep 17 00:00:00 2001 From: Stefan Eckert Date: Sat, 17 Aug 2019 14:43:27 +0200 Subject: [PATCH] fix(package): change docs folder to root --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 48edb575..fef527b4 100644 --- a/package.json +++ b/package.json @@ -16,11 +16,12 @@ "cover": "nyc npx mocha --recursive", "lint": "eslint src", "build": "cross-env BABEL_ENV=production babel src --out-dir lib && npx rollup --config ./.rolluprc", - "docs": "typedoc ./src --out ./lib/docs --allowJs --checkJs --noEmit --excludeNotExported --module commonjs --target es6 --exclude **/debug.js", + "docs": "typedoc ./src --out ./docs --allowJs --checkJs --noEmit --excludeNotExported --module commonjs --target es6 --exclude **/debug.js", "prepare": "npm run clean && npm run test && npm run build && npm run docs", "semantic-release": "semantic-release" }, "files": [ + "docs", "lib", "src" ],