Skip to content

Commit

Permalink
First run wizard (#113)
Browse files Browse the repository at this point in the history
* React 0.16
* Add first run wizard
  • Loading branch information
hidden4003 authored Oct 22, 2017
1 parent 54489c8 commit 056e70c
Show file tree
Hide file tree
Showing 92 changed files with 16,867 additions and 262 deletions.
28 changes: 27 additions & 1 deletion .babelrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,29 @@
{
"presets": ["env"]
"presets": [
["env", {
"targets": {
"browsers": ["last 2 versions", "safari >= 7"]
}
}],
"stage-1",
"react"
],
"plugins": [
"react-hot-loader/babel",
["transform-imports", {
"react-bootstrap": {
"transform": "react-bootstrap/lib/${member}",
"preventFullImport": true
},
"lodash": {
"transform": "lodash/${member}",
"preventFullImport": true
}
}]
],
"env": {
"development": {
"sourceMaps": "inline"
}
}
}
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,13 @@
# Compiled output
public/dist
public/index.html
public/sitemap.xml
public/version.json

# Node.js and NPM
node_modules/
npm-debug.log
webpack.config.js
run.config.js
/flowgen.js
/.nyc_output/
/coverage/
3 changes: 2 additions & 1 deletion css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,8 @@ a.logo span {
font-weight: 600;
}

.table.news a:hover, a:focus {
.table.news a:hover,
.table.news a:focus {
color: #36ad6f !important;
}

Expand Down
1 change: 1 addition & 0 deletions font-awesome.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,6 @@ module.exports = {
icons: true,
larger: true,
path: true,
animated: true,
},
};
Loading

0 comments on commit 056e70c

Please sign in to comment.