From ebe1ce9fac8a3dab25599c472fd3b78d900a3f81 Mon Sep 17 00:00:00 2001 From: rosen-vladimirov Date: Fri, 7 Dec 2018 00:10:09 +0200 Subject: [PATCH] feat: add docs location Add docs location in the package.json, so CLI will now where to search for the help of the extension's commands. Ignore the html folder, which CLI will generate at the root of the extension once it is installed. --- .gitignore | 3 ++- .npmignore | 1 + package.json | 3 ++- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 4e6458d..8035099 100644 --- a/.gitignore +++ b/.gitignore @@ -53,4 +53,5 @@ nativescript-cloud-*.tgz **/.vs **/.vscode .DS_Store -scratch/* \ No newline at end of file +scratch/* +html/ \ No newline at end of file diff --git a/.npmignore b/.npmignore index 36de141..7d96283 100644 --- a/.npmignore +++ b/.npmignore @@ -13,3 +13,4 @@ tscommand-*.tmp.txt tsconfig.json tslint.json Gruntfile.js +html/ \ No newline at end of file diff --git a/package.json b/package.json index 795d50b..988a67c 100644 --- a/package.json +++ b/package.json @@ -101,6 +101,7 @@ "run|cloud|android", "run|cloud|ios", "user" - ] + ], + "docs": "docs" } }