Skip to content

Commit 01da589

Browse files
npm init; add .gitignore
1 parent fb5d287 commit 01da589

File tree

3 files changed

+326
-0
lines changed

3 files changed

+326
-0
lines changed

.gitignore

+296
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,296 @@
1+
# Created by https://www.gitignore.io/api/node,vim,visualstudiocode,webstorm,linux,macos,windows
2+
# Edit at https://www.gitignore.io/?templates=node,vim,visualstudiocode,webstorm,linux,macos,windows
3+
4+
################################################################################
5+
### Code
6+
################################################################################
7+
8+
### Node ###
9+
# Logs
10+
logs
11+
*.log
12+
npm-debug.log*
13+
yarn-debug.log*
14+
yarn-error.log*
15+
lerna-debug.log*
16+
17+
# Diagnostic reports (https://nodejs.org/api/report.html)
18+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
19+
20+
# Runtime data
21+
pids
22+
*.pid
23+
*.seed
24+
*.pid.lock
25+
26+
# Directory for instrumented libs generated by jscoverage/JSCover
27+
lib-cov
28+
29+
# Coverage directory used by tools like istanbul
30+
coverage
31+
*.lcov
32+
33+
# nyc test coverage
34+
.nyc_output
35+
36+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
37+
.grunt
38+
39+
# Bower dependency directory (https://bower.io/)
40+
bower_components
41+
42+
# node-waf configuration
43+
.lock-wscript
44+
45+
# Compiled binary addons (https://nodejs.org/api/addons.html)
46+
build/Release
47+
48+
# Dependency directories
49+
node_modules/
50+
jspm_packages/
51+
52+
# TypeScript v1 declaration files
53+
typings/
54+
55+
# TypeScript cache
56+
*.tsbuildinfo
57+
58+
# Optional npm cache directory
59+
.npm
60+
61+
# Optional eslint cache
62+
.eslintcache
63+
64+
# Optional REPL history
65+
.node_repl_history
66+
67+
# Output of 'npm pack'
68+
*.tgz
69+
70+
# Yarn Integrity file
71+
.yarn-integrity
72+
73+
# dotenv environment variables file
74+
.env
75+
.env.test
76+
77+
# parcel-bundler cache (https://parceljs.org/)
78+
.cache
79+
80+
# next.js build output
81+
.next
82+
83+
# nuxt.js build output
84+
.nuxt
85+
86+
# react / gatsby
87+
public/
88+
89+
# vuepress build output
90+
.vuepress/dist
91+
92+
# Serverless directories
93+
.serverless/
94+
95+
# FuseBox cache
96+
.fusebox/
97+
98+
# DynamoDB Local files
99+
.dynamodb/
100+
101+
################################################################################
102+
### Development Environments
103+
################################################################################
104+
105+
### Vim ###
106+
# Swap
107+
[._]*.s[a-v][a-z]
108+
[._]*.sw[a-p]
109+
[._]s[a-rt-v][a-z]
110+
[._]ss[a-gi-z]
111+
[._]sw[a-p]
112+
113+
# Session
114+
Session.vim
115+
Sessionx.vim
116+
117+
# Temporary
118+
.netrwhist
119+
# Auto-generated tag files
120+
tags
121+
# Persistent undo
122+
[._]*.un~
123+
124+
### VisualStudioCode ###
125+
.vscode/*
126+
!.vscode/settings.json
127+
!.vscode/tasks.json
128+
!.vscode/launch.json
129+
!.vscode/extensions.json
130+
131+
### VisualStudioCode Patch ###
132+
# Ignore all local history of files
133+
.history
134+
135+
### WebStorm ###
136+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
137+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
138+
139+
# User-specific stuff
140+
.idea/**/workspace.xml
141+
.idea/**/tasks.xml
142+
.idea/**/usage.statistics.xml
143+
.idea/**/dictionaries
144+
.idea/**/shelf
145+
146+
# Generated files
147+
.idea/**/contentModel.xml
148+
149+
# Sensitive or high-churn files
150+
.idea/**/dataSources/
151+
.idea/**/dataSources.ids
152+
.idea/**/dataSources.local.xml
153+
.idea/**/sqlDataSources.xml
154+
.idea/**/dynamic.xml
155+
.idea/**/uiDesigner.xml
156+
.idea/**/dbnavigator.xml
157+
158+
# Gradle
159+
.idea/**/gradle.xml
160+
.idea/**/libraries
161+
162+
# Gradle and Maven with auto-import
163+
# When using Gradle or Maven with auto-import, you should exclude module files,
164+
# since they will be recreated, and may cause churn. Uncomment if using
165+
# auto-import.
166+
# .idea/modules.xml
167+
# .idea/*.iml
168+
# .idea/modules
169+
# *.iml
170+
# *.ipr
171+
172+
# CMake
173+
cmake-build-*/
174+
175+
# Mongo Explorer plugin
176+
.idea/**/mongoSettings.xml
177+
178+
# File-based project format
179+
*.iws
180+
181+
# IntelliJ
182+
out/
183+
184+
# mpeltonen/sbt-idea plugin
185+
.idea_modules/
186+
187+
# JIRA plugin
188+
atlassian-ide-plugin.xml
189+
190+
# Cursive Clojure plugin
191+
.idea/replstate.xml
192+
193+
# Crashlytics plugin (for Android Studio and IntelliJ)
194+
com_crashlytics_export_strings.xml
195+
crashlytics.properties
196+
crashlytics-build.properties
197+
fabric.properties
198+
199+
# Editor-based Rest Client
200+
.idea/httpRequests
201+
202+
# Android studio 3.1+ serialized cache file
203+
.idea/caches/build_file_checksums.ser
204+
205+
### WebStorm Patch ###
206+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
207+
208+
# *.iml
209+
# modules.xml
210+
# .idea/misc.xml
211+
# *.ipr
212+
213+
# Sonarlint plugin
214+
.idea/**/sonarlint/
215+
216+
# SonarQube Plugin
217+
.idea/**/sonarIssues.xml
218+
219+
# Markdown Navigator plugin
220+
.idea/**/markdown-navigator.xml
221+
.idea/**/markdown-navigator/
222+
223+
################################################################################
224+
### Operating Systems
225+
################################################################################
226+
227+
### Linux ###
228+
*~
229+
230+
# temporary files which can be created if a process still has a handle open of a deleted file
231+
.fuse_hidden*
232+
233+
# KDE directory preferences
234+
.directory
235+
236+
# Linux trash folder which might appear on any partition or disk
237+
.Trash-*
238+
239+
# .nfs files are created when an open file is removed but is still being accessed
240+
.nfs*
241+
242+
### macOS ###
243+
# General
244+
.DS_Store
245+
.AppleDouble
246+
.LSOverride
247+
248+
# Icon must end with two \r
249+
Icon
250+
251+
# Thumbnails
252+
._*
253+
254+
# Files that might appear in the root of a volume
255+
.DocumentRevisions-V100
256+
.fseventsd
257+
.Spotlight-V100
258+
.TemporaryItems
259+
.Trashes
260+
.VolumeIcon.icns
261+
.com.apple.timemachine.donotpresent
262+
263+
# Directories potentially created on remote AFP share
264+
.AppleDB
265+
.AppleDesktop
266+
Network Trash Folder
267+
Temporary Items
268+
.apdisk
269+
270+
### Windows ###
271+
# Windows thumbnail cache files
272+
Thumbs.db
273+
Thumbs.db:encryptable
274+
ehthumbs.db
275+
ehthumbs_vista.db
276+
277+
# Dump file
278+
*.stackdump
279+
280+
# Folder config file
281+
[Dd]esktop.ini
282+
283+
# Recycle Bin used on file shares
284+
$RECYCLE.BIN/
285+
286+
# Windows Installer files
287+
*.cab
288+
*.msi
289+
*.msix
290+
*.msm
291+
*.msp
292+
293+
# Windows shortcuts
294+
*.lnk
295+
296+
# End of https://www.gitignore.io/api/node,vim,visualstudiocode,webstorm,linux,macos,windows

package.json

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"name": "gatsby-plugin-react-helmet-async",
3+
"version": "0.0.1",
4+
"description": "Use react-helmet-async with Gatsby",
5+
"keywords": [
6+
"gatsby",
7+
"gatsbyjs",
8+
"react",
9+
"react-helmet",
10+
"react-helmet-async"
11+
],
12+
"homepage": "https://github.com/Collabsalot/gatsby-plugin-react-helmet-async#readme",
13+
"bugs": {
14+
"url": "https://github.com/Collabsalot/gatsby-plugin-react-helmet-async/issues"
15+
},
16+
"repository": {
17+
"type": "git",
18+
"url": "git+https://github.com/Collabsalot/gatsby-plugin-react-helmet-async.git"
19+
},
20+
"license": "Apache-2.0",
21+
"author": "Martin Rosenberg <Martin.B.Rosenberg@gmail.com> (https://martinbrosenberg.com)",
22+
"main": "index.js",
23+
"scripts": {
24+
"test": "echo \"Error: no test specified\" && exit 1"
25+
}
26+
}

yarn.lock

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2+
# yarn lockfile v1
3+
4+

0 commit comments

Comments
 (0)