Skip to content

Commit 20dced4

Browse files
committed
Updated gitignore and npmignore
1 parent 23a7957 commit 20dced4

File tree

2 files changed

+100
-40
lines changed

2 files changed

+100
-40
lines changed

.gitignore

Lines changed: 49 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@
1717
.nfs*
1818

1919
### macOS ###
20-
*.DS_Store
20+
# General
21+
.DS_Store
2122
.AppleDouble
2223
.LSOverride
2324

@@ -75,14 +76,14 @@ bower_components
7576
# node-waf configuration
7677
.lock-wscript
7778

78-
# Compiled binary addons (http://nodejs.org/api/addons.html)
79+
# Compiled binary addons (https://nodejs.org/api/addons.html)
7980
build/Release
8081

8182
# Dependency directories
8283
node_modules/
8384
jspm_packages/
8485

85-
# Typescript v1 declaration files
86+
# TypeScript v1 declaration files
8687
typings/
8788

8889
# Optional npm cache directory
@@ -103,50 +104,74 @@ typings/
103104
# dotenv environment variables file
104105
.env
105106

107+
# parcel-bundler cache (https://parceljs.org/)
108+
.cache
109+
110+
# next.js build output
111+
.next
112+
113+
# nuxt.js build output
114+
.nuxt
115+
116+
# vuepress build output
117+
.vuepress/dist
118+
119+
# Serverless directories
120+
.serverless
106121

107122
### VisualStudioCode ###
108123
.vscode/*
109124
!.vscode/settings.json
110125
!.vscode/tasks.json
111126
!.vscode/launch.json
112127
!.vscode/extensions.json
113-
.history
114128

115129
### WebStorm ###
116-
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
130+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
117131
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
118132

119-
# User-specific stuff:
133+
# User-specific stuff
120134
.idea/**/workspace.xml
121135
.idea/**/tasks.xml
122-
.idea/dictionaries
136+
.idea/**/usage.statistics.xml
137+
.idea/**/dictionaries
138+
.idea/**/shelf
139+
140+
# Generated files
141+
.idea/**/contentModel.xml
123142

124-
# Sensitive or high-churn files:
143+
# Sensitive or high-churn files
125144
.idea/**/dataSources/
126145
.idea/**/dataSources.ids
127-
.idea/**/dataSources.xml
128146
.idea/**/dataSources.local.xml
129147
.idea/**/sqlDataSources.xml
130148
.idea/**/dynamic.xml
131149
.idea/**/uiDesigner.xml
150+
.idea/**/dbnavigator.xml
132151

133-
# Gradle:
152+
# Gradle
134153
.idea/**/gradle.xml
135154
.idea/**/libraries
136155

156+
# Gradle and Maven with auto-import
157+
# When using Gradle or Maven with auto-import, you should exclude module files,
158+
# since they will be recreated, and may cause churn. Uncomment if using
159+
# auto-import.
160+
# .idea/modules.xml
161+
# .idea/*.iml
162+
# .idea/modules
163+
137164
# CMake
138-
cmake-build-debug/
165+
cmake-build-*/
139166

140-
# Mongo Explorer plugin:
167+
# Mongo Explorer plugin
141168
.idea/**/mongoSettings.xml
142169

143-
## File-based project format:
170+
# File-based project format
144171
*.iws
145172

146-
## Plugin-specific files:
147-
148173
# IntelliJ
149-
/out/
174+
out/
150175

151176
# mpeltonen/sbt-idea plugin
152177
.idea_modules/
@@ -157,15 +182,15 @@ atlassian-ide-plugin.xml
157182
# Cursive Clojure plugin
158183
.idea/replstate.xml
159184

160-
# Ruby plugin and RubyMine
161-
/.rakeTasks
162-
163185
# Crashlytics plugin (for Android Studio and IntelliJ)
164186
com_crashlytics_export_strings.xml
165187
crashlytics.properties
166188
crashlytics-build.properties
167189
fabric.properties
168190

191+
# Editor-based Rest Client
192+
.idea/httpRequests
193+
169194
### WebStorm Patch ###
170195
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
171196

@@ -183,15 +208,19 @@ Thumbs.db
183208
ehthumbs.db
184209
ehthumbs_vista.db
185210

211+
# Dump file
212+
*.stackdump
213+
186214
# Folder config file
187-
Desktop.ini
215+
[Dd]esktop.ini
188216

189217
# Recycle Bin used on file shares
190218
$RECYCLE.BIN/
191219

192220
# Windows Installer files
193221
*.cab
194222
*.msi
223+
*.msix
195224
*.msm
196225
*.msp
197226

.npmignore

Lines changed: 51 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@
1717
.nfs*
1818

1919
### macOS ###
20-
*.DS_Store
20+
# General
21+
.DS_Store
2122
.AppleDouble
2223
.LSOverride
2324

@@ -75,14 +76,14 @@ bower_components
7576
# node-waf configuration
7677
.lock-wscript
7778

78-
# Compiled binary addons (http://nodejs.org/api/addons.html)
79+
# Compiled binary addons (https://nodejs.org/api/addons.html)
7980
build/Release
8081

8182
# Dependency directories
8283
node_modules/
8384
jspm_packages/
8485

85-
# Typescript v1 declaration files
86+
# TypeScript v1 declaration files
8687
typings/
8788

8889
# Optional npm cache directory
@@ -103,50 +104,74 @@ typings/
103104
# dotenv environment variables file
104105
.env
105106

107+
# parcel-bundler cache (https://parceljs.org/)
108+
.cache
109+
110+
# next.js build output
111+
.next
112+
113+
# nuxt.js build output
114+
.nuxt
115+
116+
# vuepress build output
117+
.vuepress/dist
118+
119+
# Serverless directories
120+
.serverless
106121

107122
### VisualStudioCode ###
108123
.vscode/*
109124
!.vscode/settings.json
110125
!.vscode/tasks.json
111126
!.vscode/launch.json
112127
!.vscode/extensions.json
113-
.history
114128

115129
### WebStorm ###
116-
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
130+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
117131
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
118132

119-
# User-specific stuff:
133+
# User-specific stuff
120134
.idea/**/workspace.xml
121135
.idea/**/tasks.xml
122-
.idea/dictionaries
136+
.idea/**/usage.statistics.xml
137+
.idea/**/dictionaries
138+
.idea/**/shelf
139+
140+
# Generated files
141+
.idea/**/contentModel.xml
123142

124-
# Sensitive or high-churn files:
143+
# Sensitive or high-churn files
125144
.idea/**/dataSources/
126145
.idea/**/dataSources.ids
127-
.idea/**/dataSources.xml
128146
.idea/**/dataSources.local.xml
129147
.idea/**/sqlDataSources.xml
130148
.idea/**/dynamic.xml
131149
.idea/**/uiDesigner.xml
150+
.idea/**/dbnavigator.xml
132151

133-
# Gradle:
152+
# Gradle
134153
.idea/**/gradle.xml
135154
.idea/**/libraries
136155

156+
# Gradle and Maven with auto-import
157+
# When using Gradle or Maven with auto-import, you should exclude module files,
158+
# since they will be recreated, and may cause churn. Uncomment if using
159+
# auto-import.
160+
# .idea/modules.xml
161+
# .idea/*.iml
162+
# .idea/modules
163+
137164
# CMake
138-
cmake-build-debug/
165+
cmake-build-*/
139166

140-
# Mongo Explorer plugin:
167+
# Mongo Explorer plugin
141168
.idea/**/mongoSettings.xml
142169

143-
## File-based project format:
170+
# File-based project format
144171
*.iws
145172

146-
## Plugin-specific files:
147-
148173
# IntelliJ
149-
/out/
174+
out/
150175

151176
# mpeltonen/sbt-idea plugin
152177
.idea_modules/
@@ -157,15 +182,15 @@ atlassian-ide-plugin.xml
157182
# Cursive Clojure plugin
158183
.idea/replstate.xml
159184

160-
# Ruby plugin and RubyMine
161-
/.rakeTasks
162-
163185
# Crashlytics plugin (for Android Studio and IntelliJ)
164186
com_crashlytics_export_strings.xml
165187
crashlytics.properties
166188
crashlytics-build.properties
167189
fabric.properties
168190

191+
# Editor-based Rest Client
192+
.idea/httpRequests
193+
169194
### WebStorm Patch ###
170195
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
171196

@@ -183,15 +208,19 @@ Thumbs.db
183208
ehthumbs.db
184209
ehthumbs_vista.db
185210

211+
# Dump file
212+
*.stackdump
213+
186214
# Folder config file
187-
Desktop.ini
215+
[Dd]esktop.ini
188216

189217
# Recycle Bin used on file shares
190218
$RECYCLE.BIN/
191219

192220
# Windows Installer files
193221
*.cab
194222
*.msi
223+
*.msix
195224
*.msm
196225
*.msp
197226

@@ -203,6 +232,8 @@ $RECYCLE.BIN/
203232

204233
## Project
205234

235+
temp
236+
206237
.idea
207238
.vscode
208239

0 commit comments

Comments
 (0)