Skip to content

Commit d3cdfa3

Browse files
committed
Cleanup
1 parent 5e60598 commit d3cdfa3

40 files changed

+12074
-16106
lines changed

.editorconfig

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
root = true
2+
3+
[*]
4+
indent_style = tab
5+
end_of_line = lf
6+
charset = utf-8
7+
trim_trailing_whitespace = true
8+
insert_final_newline = true
9+
10+
[*.yml]
11+
indent_style = space
12+
indent_size = 2

.eslintrc.json

-38
This file was deleted.

.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text=auto eol=lf

.gitignore

+1-41
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,3 @@
1-
# Project dependencies
2-
.cache
31
node_modules
4-
yarn-error.log
5-
6-
# Build directory
72
/public
8-
.DS_Store
9-
10-
### VisualStudioCode ###
11-
.vscode/*
12-
!.vscode/settings.json
13-
!.vscode/tasks.json
14-
!.vscode/launch.json
15-
!.vscode/extensions.json
16-
.history
17-
18-
### macOS ###
19-
*.DS_Store
20-
.AppleDouble
21-
.LSOverride
22-
23-
# Icon must end with two \r
24-
Icon
25-
26-
# Thumbnails
27-
._*
28-
29-
# Files that might appear in the root of a volume
30-
.DocumentRevisions-V100
31-
.fseventsd
32-
.Spotlight-V100
33-
.TemporaryItems
34-
.Trashes
35-
.VolumeIcon.icns
36-
.com.apple.timemachine.donotpresent
37-
38-
# Directories potentially created on remote AFP share
39-
.AppleDB
40-
.AppleDesktop
41-
Network Trash Folder
42-
Temporary Items
43-
.apdisk
3+
.cache

.npmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
package-lock=false

.prettierrc

-5
This file was deleted.

.travis.yml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
language: node_js
2+
node_js:
3+
- '10'

LICENSE

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
The MIT License (MIT)
1+
MIT License
22

3-
Copyright (c) 2015 gatsbyjs
3+
Copyright (c) 2017 Luke Childs
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal
@@ -19,4 +19,3 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1919
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2020
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2121
SOFTWARE.
22-

README.md

+9-11
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,19 @@
1-
# HyperDex Website
1+
# HyperDEX Website
22

33
## Install
44

5-
Make sure that you have the Gatsby CLI program installed:
6-
```sh
7-
npm install --global gatsby-cli
85
```
6+
$ yarn
7+
```
8+
9+
## Run
910

10-
Then you can run it by:
11-
```sh
12-
gatsby develop
11+
```
12+
$ yarn start
1313
```
1414

1515
## Build
1616

17-
For production build, run:
18-
19-
```sh
20-
gatsby build
17+
```
18+
$ yarn build
2119
```

gatsby-browser.js

-7
This file was deleted.

gatsby-config.js

+18-16
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,19 @@
1+
'use strict';
2+
13
module.exports = {
2-
siteMetadata: {
3-
title: 'Gatsby Default Starter',
4-
},
5-
plugins: [
6-
'gatsby-plugin-react-helmet',
7-
'gatsby-transformer-remark',
8-
{
9-
resolve: `gatsby-source-filesystem`,
10-
options: {
11-
name: `src`,
12-
path: `${__dirname}/src`
13-
}
14-
},
15-
'gatsby-plugin-netlify-cms'
16-
],
17-
}
4+
siteMetadata: {
5+
title: 'Gatsby Default Starter',
6+
},
7+
plugins: [
8+
'gatsby-plugin-react-helmet',
9+
'gatsby-transformer-remark',
10+
{
11+
resolve: 'gatsby-source-filesystem',
12+
options: {
13+
name: 'src',
14+
path: `${__dirname}/src`,
15+
},
16+
},
17+
'gatsby-plugin-netlify-cms',
18+
],
19+
};

gatsby-node.js

-7
This file was deleted.

gatsby-ssr.js

-7
This file was deleted.

0 commit comments

Comments
 (0)