Skip to content

Commit 05e0997

Browse files
committed
adding .npmignore file to exclude dev files from production package
1 parent 2b9469b commit 05e0997

File tree

1 file changed

+45
-0
lines changed

1 file changed

+45
-0
lines changed

.npmignore

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
# Windows image file caches
2+
Thumbs.db
3+
ehthumbs.db
4+
Desktop.ini
5+
6+
# Recycle Bin used on file shares
7+
$RECYCLE.BIN/
8+
9+
# Windows shortcuts
10+
*.lnk
11+
12+
# OSX
13+
.DS_Store
14+
.AppleDouble
15+
.LSOverride
16+
17+
# Thumbnails
18+
._*
19+
20+
# Files that might appear in the root of a volume
21+
.DocumentRevisions-V100
22+
.fseventsd
23+
.Spotlight-V100
24+
.TemporaryItems
25+
.Trashes
26+
.VolumeIcon.icns
27+
28+
# Directories potentially created on remote AFP share
29+
.AppleDB
30+
.AppleDesktop
31+
Network Trash Folder
32+
Temporary Items
33+
.apdisk
34+
35+
# Node stuff
36+
node_modules/
37+
coverage/
38+
.nyc_output/
39+
temp/
40+
41+
# not production code
42+
scripts/
43+
temp/
44+
test/
45+
.*

0 commit comments

Comments
 (0)