diff --git a/packages/analyzer/.npmignore b/packages/analyzer/.npmignore deleted file mode 100644 index 6eaca1dad..000000000 --- a/packages/analyzer/.npmignore +++ /dev/null @@ -1,24 +0,0 @@ -node_modules -bower_components -.DS_Store -.idea -.vscode -.github -.clang-format -.editorconfig -.gitattributes -.travis.yml -gulpfile.js -tslint.json -npm-debug.log - -# The raw typescript source -src/ - -# Tests and test fixtures -lib/test/ -test/ - -# Bits of code that demonstrate the API -lib/demo - diff --git a/packages/analyzer/CHANGELOG.md b/packages/analyzer/CHANGELOG.md index 29d0b3cce..f195c2bc6 100644 --- a/packages/analyzer/CHANGELOG.md +++ b/packages/analyzer/CHANGELOG.md @@ -5,7 +5,8 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). - +## Unreleased +* Removed non-essential files from published package, such as tests. ## [3.2.1] - 2018-12-19 diff --git a/packages/analyzer/package.json b/packages/analyzer/package.json index 55862e97d..513da6fd9 100644 --- a/packages/analyzer/package.json +++ b/packages/analyzer/package.json @@ -10,10 +10,10 @@ "main": "lib/index.js", "typings": "lib/index.d.ts", "files": [ - "LICENSE", - "lib/", "custom_typings/", - "bin/" + "lib/", + "!lib/demo", + "!lib/test" ], "scripts": { "clean": "touch lib && rm -rf lib && mkdir lib",