Skip to content
This repository has been archived by the owner on Dec 28, 2022. It is now read-only.

Commit

Permalink
Merge 70ecd39 into baebfc3
Browse files Browse the repository at this point in the history
  • Loading branch information
Gum-Joe committed Jan 3, 2017
2 parents baebfc3 + 70ecd39 commit 8be621e
Show file tree
Hide file tree
Showing 515 changed files with 97,235 additions and 80,639 deletions.
5 changes: 4 additions & 1 deletion .babelrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
{
"presets": ["es2015-loose", "stage-0", "react"]
"plugins": [
"react-hot-loader/babel"
],
"presets": ["latest", "stage-0", "react"]
}
2 changes: 1 addition & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ rules:

# Node.js and CommonJS
callback-return: 2
global-require: 1
global-require: 0
handle-callback-err: 2
no-mixed-requires: 0
no-new-require: 0
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -52,3 +52,6 @@ tmp

# Cache
.sass-cache

# Semantic UI
client/semantic/dist
2 changes: 1 addition & 1 deletion app.js
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ module.exports = (options) => {

// Static files
app.use(express.static(path.join(__dirname, 'node_modules')));
app.use(express.static(path.join(__dirname, 'client', 'assets')));
app.use(express.static(path.join(__dirname, 'client')));
app.use(express.static(path.join(__dirname, 'views')));

// Routes
Expand Down
Loading

0 comments on commit 8be621e

Please sign in to comment.