-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.npmignore
73 lines (59 loc) · 1.08 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
# 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/
/tests/
# nyc test coverage
/.nyc_output/
# VS Code
/.vscode/
# CI
/.github/
/.travis.yml
/.appveyor.yml
README-*.md
/src/
**/tsconfig*.json
*.ts
lib/**/*.ts
# The above removes all TypeScript including the .d.ts files.
# Bring those later back.
!*.d.ts
!lib/*.d.ts
tsconfig.tsbuildinfo
/tests/
typedoc.json
/docs/
# /assets/ # keep it, xpm needs it.
/scripts/
/website/
/tmp/
.tap
#end