Skip to content

Commit f2969e8

Browse files
committed
update .gitignore
1 parent ba4651c commit f2969e8

File tree

1 file changed

+6
-157
lines changed

1 file changed

+6
-157
lines changed

.npmignore

Lines changed: 6 additions & 157 deletions
Original file line numberDiff line numberDiff line change
@@ -1,157 +1,6 @@
1-
# Ignore source code
2-
src
3-
__tests__
4-
config.dev.json
5-
*.md
6-
.homebridge-alexa-smarthome
7-
.tool-versions
8-
.git-blame-ignore-revs
9-
10-
dist/**/*.d.*
11-
dist/**/*.it.*
12-
dist/**/*.js.*
13-
dist/**/*.test.*
14-
15-
docs/
16-
17-
# ------------- Defaults ------------- #
18-
19-
# gitHub actions
20-
.github
21-
22-
# eslint
23-
.eslintrc
24-
.prettierrc
25-
.lintstagedrc
26-
.husky
27-
28-
# typescript
29-
tsconfig.json
30-
tsconfig.test.json
31-
tsconfig.prod.json
32-
33-
# jest
34-
jest.config.js
35-
36-
# vscode
37-
.vscode
38-
39-
# nodemon
40-
nodemon*
41-
42-
# Logs
43-
logs
44-
*.log
45-
npm-debug.log*
46-
yarn-debug.log*
47-
yarn-error.log*
48-
lerna-debug.log*
49-
50-
# Diagnostic reports (https://nodejs.org/api/report.html)
51-
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
52-
53-
# Runtime data
54-
pids
55-
*.pid
56-
*.seed
57-
*.pid.lock
58-
59-
# Directory for instrumented libs generated by jscoverage/JSCover
60-
lib-cov
61-
62-
# Coverage directory used by tools like istanbul
63-
coverage
64-
*.lcov
65-
66-
# nyc test coverage
67-
.nyc_output
68-
69-
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
70-
.grunt
71-
72-
# Bower dependency directory (https://bower.io/)
73-
bower_components
74-
75-
# node-waf configuration
76-
.lock-wscript
77-
78-
# Compiled binary addons (https://nodejs.org/api/addons.html)
79-
build/Release
80-
81-
# Dependency directories
82-
node_modules/
83-
jspm_packages/
84-
85-
# Snowpack dependency directory (https://snowpack.dev/)
86-
web_modules/
87-
88-
# TypeScript cache
89-
*.tsbuildinfo
90-
91-
# Optional npm cache directory
92-
.npm
93-
94-
# Optional eslint cache
95-
.eslintcache
96-
97-
# Microbundle cache
98-
.rpt2_cache/
99-
.rts2_cache_cjs/
100-
.rts2_cache_es/
101-
.rts2_cache_umd/
102-
103-
# Optional REPL history
104-
.node_repl_history
105-
106-
# Output of 'npm pack'
107-
*.tgz
108-
109-
# Yarn Integrity file
110-
.yarn-integrity
111-
112-
# dotenv environment variables file
113-
.env
114-
.env.test
115-
.env.example
116-
117-
# parcel-bundler cache (https://parceljs.org/)
118-
.cache
119-
.parcel-cache
120-
121-
# Next.js build output
122-
.next
123-
124-
# Nuxt.js build / generate output
125-
.nuxt
126-
dist
127-
128-
# Gatsby files
129-
.cache/
130-
# Comment in the public line in if your project uses Gatsby and not Next.js
131-
# https://nextjs.org/blog/next-9-1#public-directory-support
132-
# public
133-
134-
# vuepress build output
135-
.vuepress/dist
136-
137-
# Serverless directories
138-
.serverless/
139-
140-
# FuseBox cache
141-
.fusebox/
142-
143-
# DynamoDB Local files
144-
.dynamodb/
145-
146-
# TernJS port file
147-
.tern-port
148-
149-
# Stores VSCode versions used for testing VSCode extensions
150-
.vscode-test
151-
152-
# yarn v2
153-
154-
.yarn/cache
155-
.yarn/unplugged
156-
.yarn/build-state.yml
157-
.pnp.*
1+
**/**
2+
!dist/**/*.js
3+
!LICENSE
4+
!README.md
5+
!package.json
6+
!config.schema.json

0 commit comments

Comments
 (0)