-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.npmignore
125 lines (92 loc) · 1.68 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
# Ignore files and directories generated by IDEs
.idea/
*.iml
out
gen
# Ignore Node.js dependencies
node_modules/
./node_modules
# Ignore linting configuration files
.eslintignore
.eslintrc.cjs
.stylelintrc
# Ignore CI/CD configuration files
.travis.yml
# Ignore Cypress configuration file
cypress.json
# Ignore ecosystem configuration file
ecosystem.config.js
# Ignore changelog file
CHANGELOG.md
# Ignore code coverage output
coverage
# Ignore runtime data
pids
*.pid
*.seed
*.pid.lock
# Ignore Grunt intermediate storage
.grunt
# Ignore Bower dependency directory
bower_components
# Ignore node-waf configuration
.lock-wscript
# Ignore compiled binary addons
build/Release
# Ignore dependency directories
node_modules/
jspm_packages/
# Ignore Snowpack dependency directory
web_modules/
# Ignore TypeScript cache
*.tsbuildinfo
# Ignore optional npm cache directory
.npm
# Ignore optional ESLint cache
.eslintcache
# Ignore Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/
# Ignore REPL history
.node_repl_history
# Ignore 'npm pack' output
*.tgz
# Ignore Yarn Integrity file
.yarn-integrity
# Ignore dotenv environment variables file
.env
.env.test
# Ignore parcel-bundler cache
.cache
.parcel-cache
# Ignore Next.js build output
.next
out
# Ignore Nuxt.js build / generate output
.nuxt
# Ignore Gatsby files
.cache/
# Ignore vuepress build output
.vuepress/dist
# Ignore Serverless directories
.serverless/
# Ignore FuseBox cache
.fusebox/
# Ignore DynamoDB Local files
.dynamodb/
# Ignore TernJS port file
.tern-port
# Ignore VSCode test files
.vscode-test
# Ignore yarn v2
.pnp.*
.yarn/*
src/
.gitignore
tsconfig.json
.git
.github
.vscode
examples/