Skip to content
This repository has been archived by the owner on Sep 20, 2024. It is now read-only.

Commit

Permalink
Merge branch 'release/release-2.0.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam Breznicky committed May 31, 2017
2 parents 8789ff3 + 0d1ddef commit 764f36d
Show file tree
Hide file tree
Showing 174 changed files with 8,605 additions and 1,286 deletions.
Binary file removed .DS_Store
Binary file not shown.
3 changes: 3 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
"env": {
"development": {
"presets": ["react-hmre"]
},
"testing": {
"presets": ["react-native"]
}
}
}
37 changes: 37 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# EditorConfig is awesome: http://EditorConfig.org

# top-most EditorConfig file
root = true

# Unix-style newlines with a newline ending every file
[*]
end_of_line = lf
insert_final_newline = true

# Matches multiple files with brace expansion notation
# Set default charset
[*.{js,py}]
charset = utf-8

# 4 space indentation
[*.py]
indent_style = space
indent_size = 4

[*.es]
indent_style = tab
indent_size = 2

[*.jsx]
indent_style = space
indent_size = 2

# Indentation override for all JS under lib directory
[*.{js,es}]
indent_style = space
indent_size = 2

# Matches the exact files either package.json or .travis.yml
[{package.json,.travis.yml}]
indent_style = space
indent_size = 2
9 changes: 6 additions & 3 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,25 @@
"plugins": ["react"],
"ecmaFeatures": {
"modules": true,
"jsx": true
"jsx": true,
"es": true
},
"parser": "babel-eslint",
"environment": {
"browser": true,
"browser": true
},
"rules": {
"strict": [1],
"brace-style": [2, "stroustrup", { "allowSingleLine": true }],
"comma-dangle": [0],
"consistent-return": [0],
"indent": [2, 2, {"SwitchCase": 1}],
"max-len": [2, 120, 4],
"no-console": [0],
"no-mixed-spaces-and-tabs": [2],
"quotes": [0],
"semi": [2, "never"],
"spaced-comment": [0],
"eol-last": 0,
"eol-last": 0
}
}
13 changes: 11 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,15 @@ jspm_packages

/dist/*

.editorconfig

.idea/

src/images/\.DS_Store

src/\.DS_Store

\.DS_Store

load_test*

*.swp

10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,12 @@ Install Packages: `npm install`

## Production Build

1. `npm run dist` will produce a production build in the `/dist/` folder
1. `npm run dist` will produce a production build in the `/dist/` folder

## Favicons, Icons, & Images

https://realfavicongenerator.net/
1. Favicon.ico is converted to PNG format and then uploaded to the realfavicongenerator. Should be a minimum pixel size of 144x144. This generator will offer numerous options for specific shortcut icons and favicons for a multitude of devices.
1. Go through the settings and tweak the various ones as necessary.
1. Be sure to declare the 'path' in the last settings option ("Favicon Generator Options") to be `/icons`. Then click to Generate
1. After generation is complete, download the Favicon Package and use it to replace the images within `/src/images/icons`. Then copy the HTML code and use it to replace the pre-existing image code within `/src/index.swig`
Loading

0 comments on commit 764f36d

Please sign in to comment.