-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy path.npmignore
51 lines (42 loc) · 917 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
# According to https://docs.npmjs.com/files/package.json#files
# Files included with the “package.json#files” field cannot be excluded through .npmignore or .gitignore.
# 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
# package-lock.json (use shrinkwrap instead)
# To check what will be included in package to be published, run
# npm publish --dry-run
# Ignore test directory
test
# Ignore other files
src
docs
build
package-lock.json
sonar-project.properties
.github
.nyc_output
coverage
gulpfile
# IDE
.vscode