-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
.npmignore
84 lines (73 loc) · 1.23 KB
/
.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
# 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.
.DS_Store
.git/
.github/
.gitignore
.gitmodules
.clang-*
.cmake-format
# npm pack archives
/*.tgz
# tap
coverage/
tests/
.tap/
# nyc test coverage
.nyc_output/
# VS Code
.vscode/
# CI
.travis.yml
.appveyor.yml
README-*.md
LICENSE-*
!LICENSE-XPACK
CONTRIBUTING**
*.ts
lib/**/*.ts
# The above removes all TypeScript including the .d.ts files.
# Bring those later back.
!*.d.ts
!lib/*.d.ts
**/tsconfig*.json
typedoc.json
tsconfig.tsbuildinfo
src/
xpacks/
node_modules/
docs/
# /assets/ # keep it, xpm needs it.
scripts/
website/
tmp/
patches/
pkgconfig/
ci/
example*/
#end