forked from GerHobbelt/jison
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.npmignore
59 lines (43 loc) · 1.05 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
## Dependency directory
## Commenting this out is preferred by some people, see
## https://docs.npmjs.com/misc/faq#should-i-check-my-node_modules-folder-into-git
node_modules/
# Ignore the monorepo subpackages directory as the dist/ files do not need them and those should be published separately
packages/
# Apple Crap
.DS_Store
# more npm dung
npm-debug.log
# Editor backup files
*.bak
*~
# Generated web content directories (nanoc output)
web/tmp/
web/crash.log
# ignore the compiler output for any examples:
/examples/output
# scratch space
/tmp/
# Ignore the web directory, i.e. the web pages
web/
# Ignore build/publish scripts, etc.
git-tag-and-bump-and-rebuild.sh
Makefile
# `npm install jison` doesn't need any submodules: ignore them!
.gitmodules
# misc files which are used during development
Vagrantfile
__patch_*.js
/modules/
# extra documentation (WIP)
book-using-jison-beyond-the-basics/
book.json
.bookignore
# no examples wanted
/examples/
# test set & test rig
/tests/
/test-npm-install/
# jscs et al config files:
.js*
.travis*