diff --git a/ .editorconfig b/.editorconfig similarity index 100% rename from .editorconfig rename to .editorconfig diff --git a/.npmignore b/.npmignore index 9e6ba31..e0630b6 100644 --- a/.npmignore +++ b/.npmignore @@ -11,7 +11,12 @@ # source /projects /modules -index.ts + +# ignore the .ts files +*.ts + +# include the .d.ts files +!*.d.ts # configuration .env* @@ -23,6 +28,7 @@ renovate.json tsconfig* jest* tslint.json +projects/intelligence/config/default.json # docs docs diff --git a/package.json b/package.json index 290e857..73fbd54 100644 --- a/package.json +++ b/package.json @@ -29,6 +29,7 @@ "lint": "yarn lint:md && yarn lint:ts", "lint:md": "markdownlint {docs/**/*.md,modules/**/*.md,projects/**/*.md,./README*.md}", "lint:ts": "tslint -p tsconfig.json -c tslint.json", + "prepare": "yarn build:prod", "postpublish": "yarn build:preprocess", "release:major": "yarn standard-version -s --release-as major", "release:minor": "yarn standard-version -s --release-as minor",