Skip to content

Commit b22effa

Browse files
committed
intial commit
0 parents  commit b22effa

File tree

243 files changed

+87005
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

243 files changed

+87005
-0
lines changed

.browserslistrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Last 2 versions

.github/FUNDING.yml

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
github: [mhadaily]

.github/ISSUE_TEMPLATE/bug_report.md

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
---
2+
name: Bug report
3+
about: Something isn't working as expected?
4+
5+
---
6+
7+
<!--
8+
Please fill out each section below, otherwise your issue will be closed.
9+
10+
Useful Links:
11+
- Documentation: https://www.gatsbyjs.org/docs/
12+
- How to File an Issue: https://www.gatsbyjs.org/docs/how-to-file-an-issue/
13+
-->
14+
15+
## Description
16+
17+
Describe the issue that you're seeing.
18+
19+
### Steps to reproduce
20+
21+
Clear steps describing how to reproduce the issue. Please please please link to a demo project if possible, this makes your issue _much_ easier to diagnose (seriously).
22+
23+
### Expected result
24+
25+
What should happen?
26+
27+
### Actual result
28+
29+
What happened.
30+
31+
### Environment
32+
33+
Run `gatsby info --clipboard` in your project directory and paste the output here. Not working? You may need to update your global gatsby-cli - `npm install -g gatsby-cli`
+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
5+
---
6+
7+
## Summary
8+
9+
Brief explanation of the feature.
10+
11+
### Basic example
12+
13+
If the proposal involves a new or changed API, include a basic code example. Omit this section if it's not applicable.
14+
15+
### Motivation
16+
17+
Why are we doing this? What use cases does it support? What is the expected outcome?

.github/workflows/deploy.yaml

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Build and Deploy to website
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
8+
jobs:
9+
build:
10+
# 2. Using the latest Ubuntu image
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
# Check out the current repository code
15+
- uses: actions/checkout@v1
16+
# 3. https://github.com/actions/setup-node#usage
17+
- uses: actions/setup-node@v1
18+
with:
19+
node-version: '12.x'
20+
- run: npm install
21+
# This triggers `gatsby build` script in "package.json"
22+
- run: npm run build
23+
# 4. Deploy the gatsby build to Netlify
24+
- uses: netlify/actions/cli@master
25+
env:
26+
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
27+
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
28+
with:
29+
# 5. "gatsby build" creates "public" folder, which is what we are deploying
30+
args: deploy --dir=public --prod
31+
secrets: '["NETLIFY_AUTH_TOKEN", "NETLIFY_SITE_ID"]'

.gitignore

+63
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
### Node ###
2+
# Logs
3+
logs
4+
*.log
5+
npm-debug.log*
6+
7+
# Runtime data
8+
pids
9+
*.pid
10+
*.seed
11+
*.pid.lock
12+
.DS_Store
13+
14+
# Directory for instrumented libs generated by jscoverage/JSCover
15+
lib-cov
16+
17+
# Coverage directory used by tools like istanbul
18+
coverage
19+
20+
# nyc test coverage
21+
.nyc_output
22+
23+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
24+
.grunt
25+
26+
# node-waf configuration
27+
.lock-wscript
28+
29+
# Compiled binary addons (http://nodejs.org/api/addons.html)
30+
build/Release
31+
32+
# Dependency directories
33+
node_modules
34+
jspm_packages
35+
.idea
36+
37+
# Optional npm cache directory
38+
.npm
39+
40+
# Optional eslint cache
41+
.eslintcache
42+
43+
# Optional REPL history
44+
.node_repl_history
45+
46+
# Output of 'npm pack'
47+
*.tgz
48+
49+
# Yarn Integrity file
50+
.yarn-integrity
51+
52+
53+
# Build Files
54+
public/
55+
.cache/
56+
57+
# Gatsby context
58+
.gatsby-context.js
59+
60+
# Bundle stats
61+
bundle-stats.json
62+
63+
.vscode

.huskyrc

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"hooks": {
3+
"pre-commit": ["lint-staged"]
4+
}
5+
}

.lintstagedrc

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"*.{ts,tsx}": ["npm run lint:ts", "npm run format"],
3+
}

.netlify/state.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"siteId": "dccd4845-3c95-4bd0-8b14-15fdb0cfea86"
3+
}

.nvmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
v14.15.0

.prettierrc.json

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"semi": true,
3+
"tabWidth": 2,
4+
"printWidth": 90,
5+
"singleQuote": true,
6+
"trailingComma": "all"
7+
}

.stylelintignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
**/*.d.ts
2+
**/*.json
3+
**/prismjs-theme.css

.stylelintrc.json

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"extends": ["stylelint-config-recommended", "stylelint-config-styled-components"],
3+
"plugins": ["stylelint-scss"],
4+
"rules": {
5+
"scss/dollar-variable-pattern": null,
6+
"scss/selector-no-redundant-nesting-selector": true,
7+
"scss/at-rule-no-unknown": true,
8+
"at-rule-no-unknown": null
9+
}
10+
}

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# FlutterVikings website 2020

0 commit comments

Comments
 (0)