Skip to content

Commit

Permalink
Explicitly list what we want in our NPM package
Browse files Browse the repository at this point in the history
Switch over to explicitly listing what we want to include, rather
than listing what we don't want to include. There is too much risk
of getting random junk from your working copy otherwise. This should
also hopefully complain if something is missing.
  • Loading branch information
CendioOssman committed Jan 11, 2019
1 parent 18439b0 commit ea4065f
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 37 deletions.
37 changes: 0 additions & 37 deletions .npmignore

This file was deleted.

11 changes: 11 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,20 @@
"version": "1.0.0",
"description": "An HTML5 VNC client",
"directories": {
"lib": "lib",
"doc": "docs",
"test": "tests"
},
"files": [
"lib",
"AUTHORS",
"VERSION",
"docs/API.md",
"docs/LIBRARY.md",
"docs/LICENSE*",
"core",
"vendor/pako"
],
"scripts": {
"lint": "eslint app core po tests utils",
"test": "karma start karma.conf.js",
Expand Down
Empty file.

0 comments on commit ea4065f

Please sign in to comment.