forked from novnc/noVNC
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This updates the .npmignore file to ignore some new files that were recently added, and to keep the `core` directory, so that noVNC can be used as an ES6 module from NPM. This also updates package.json to clean when generating lib files in the `prepare` phase (which has replaced the `prepublish` phase).
- Loading branch information
1 parent
a80955e
commit f6dd102
Showing
3 changed files
with
35 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,3 +9,4 @@ utils/websockify | |
recordings | ||
*.swp | ||
*~ | ||
noVNC-*.tgz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,37 @@ | ||
app | ||
core | ||
vendor | ||
.gitmodules | ||
node_modules | ||
# infra JS | ||
/build/ | ||
/node_modules/ | ||
/tests/ | ||
/utils/ | ||
/recordings/ | ||
/vendor/sinon.js | ||
|
||
# noVNC application files | ||
/app | ||
/vendor/browser-es-module-loader | ||
/vendor/promise.js | ||
/vnc.html | ||
/vnc_lite.html | ||
|
||
# raw translation files | ||
/po | ||
|
||
# config files | ||
/.travis.yml | ||
/karma.conf.js | ||
|
||
# various other files | ||
/.gitmodules | ||
.* | ||
*~ | ||
*.swp | ||
*.swo | ||
tests | ||
.travis.yml | ||
utils | ||
docs/notes | ||
docs/links | ||
docs/release.txt | ||
docs/rfb_notes | ||
docs/*.pdf | ||
vnc.html | ||
vnc_lite.html | ||
karma.conf.js | ||
docs/flash_policy.txt | ||
|
||
# documentation (except licenses) | ||
/docs/notes | ||
/docs/links | ||
/docs/release.txt | ||
/docs/rfb_notes | ||
/docs/*.pdf | ||
/docs/flash_policy.txt | ||
/CONTRIBUTING.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters