Skip to content
This repository has been archived by the owner on Dec 1, 2020. It is now read-only.

Commit

Permalink
added .npmignore to include dist when publishing
Browse files Browse the repository at this point in the history
tomwayson committed Nov 18, 2015
1 parent 13b5d1f commit 8f60281
Showing 2 changed files with 44 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
# built files under site folder
site/lib

# distributable files - only included in releases
dist

# ngdocs generated files
ngdocs

@@ -41,3 +38,7 @@ node_modules

# istanbull test coverage reports
test/unit/coverage

# distributable files - only included in releases
# NOTE: make sure this is not included in .npmignore
dist
40 changes: 40 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# built files under site folder
site/lib

# ngdocs generated files
ngdocs

# Logs
logs
*.log

# Runtime data
pids
*.pid
*.seed

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release

# Dependency directory
# Commenting this out is preferred by some people, see
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git-
node_modules

# Users Environment Variables
.lock-wscript

# WebStorm IDE settings
.idea

# istanbull test coverage reports
test/unit/coverage

0 comments on commit 8f60281

Please sign in to comment.