-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
dan terwilliger
committed
Aug 17, 2016
0 parents
commit b8e1d0d
Showing
73 changed files
with
3,004 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
// NOTE: These options are overriden by the babel-loader configuration | ||
// for webpack, which can be found in ~/build/webpack.config. | ||
// | ||
// Why? The react-transform-hmr plugin depends on HMR (and throws if | ||
// module.hot is disabled), so keeping it and related plugins contained | ||
// within webpack helps prevent unexpected errors. | ||
{ | ||
"presets": ["es2015", "react", "stage-0"], | ||
"plugins": ["transform-runtime"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# http://editorconfig.org | ||
|
||
# A special property that should be specified at the top of the file outside of | ||
# any sections. Set to true to stop .editor config file search on current file | ||
root = true | ||
|
||
[*] | ||
# Indentation style | ||
# Possible values - tab, space | ||
indent_style = space | ||
|
||
# Indentation size in single-spaced characters | ||
# Possible values - an integer, tab | ||
indent_size = 2 | ||
|
||
# Line ending file format | ||
# Possible values - lf, crlf, cr | ||
end_of_line = lf | ||
|
||
# File character encoding | ||
# Possible values - latin1, utf-8, utf-16be, utf-16le | ||
charset = utf-8 | ||
|
||
# Denotes whether to trim whitespace at the end of lines | ||
# Possible values - true, false | ||
trim_trailing_whitespace = true | ||
|
||
# Denotes whether file should end with a newline | ||
# Possible values - true, false | ||
insert_final_newline = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
blueprints/**/files/** | ||
coverage/** | ||
node_modules/** | ||
dist/** | ||
*.spec.js | ||
src/index.html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
{ | ||
"parser" : "babel-eslint", | ||
"extends" : [ | ||
"standard", | ||
"standard-react" | ||
], | ||
"plugins": [ | ||
"babel", | ||
"react", | ||
"promise" | ||
], | ||
"env" : { | ||
"browser" : true | ||
}, | ||
"globals" : { | ||
"__DEV__" : false, | ||
"__PROD__" : false, | ||
"__DEBUG__" : false, | ||
"__COVERAGE__" : false, | ||
"__BASENAME__" : false | ||
}, | ||
"rules": { | ||
"semi" : [2, "never"], | ||
"max-len": [2, 120, 2], | ||
"generator-star-spacing": 0, | ||
"babel/generator-star-spacing": 1, | ||
"jsx-quotes": [2, "prefer-single"] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
.DS_STORE | ||
*.log | ||
|
||
node_modules | ||
|
||
dist | ||
coverage | ||
|
||
.idea/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"sourceBase":"src","testBase":"tests","smartPath":"containers","dumbPath":"components","fileCasing":"pascal"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
sudo: false | ||
language: node_js | ||
node_js: | ||
- "6" | ||
|
||
cache: | ||
directories: | ||
- node_modules | ||
|
||
install: | ||
- npm install | ||
|
||
script: | ||
- npm run lint | ||
- npm run test | ||
- NODE_ENV=development npm run deploy | ||
- NODE_ENV=staging npm run deploy | ||
- NODE_ENV=production npm run deploy | ||
|
||
after_success: | ||
- npm run codecov |
Oops, something went wrong.