forked from xpack/xpm-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.npmignore
57 lines (48 loc) · 900 Bytes
/
.npmignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# https://docs.npmjs.com/files/package.json#files
# Certain files are always included, regardless of settings:
# - package.json
# - README
# - CHANGES / CHANGELOG / HISTORY
# - LICENSE / LICENCE
# - NOTICE
# - The file in the "main" field
# README, CHANGES, LICENSE & NOTICE can have any case and extension.
#
# Conversely, some files are always ignored:
# - .git
# - CVS
# - .svn
# - .hg
# - .lock-wscript
# - .wafpickle-N
# - .*.swp
# - .DS_Store
# - ._*
# - npm-debug.log
# - .npmrc
# - node_modules
# - config.gypi
# - *.orig
# -----------------------------------------------------------------------------
# .gitignore is not automatically included, add relevant lines again.
# npm
/*.tgz
# tap
/coverage/
/test/
# nyc test coverage
/.nyc_output/
# VS Code
/.vscode/
# GitHub
/.github/
# CI
/.travis.yml
/.appveyor.yml
# Project specfic
/NOTES*.md
/README-*.md
/docs/
/doc/
/tests/
#end