Skip to content

Commit

Permalink
Merge pull request electrode-io#129 from electrode/release-8.1.3
Browse files Browse the repository at this point in the history
Release 8.1.3
  • Loading branch information
dstevensio committed Apr 6, 2016
2 parents e6295af + a6fe287 commit 9420692
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,12 @@
"messagesDir": "./lib/tmp/messages/",
"enforceDescriptions": true
}]
]
],
"env": {
"production": {
"plugins": [
"babel-plugin-transform-react-constant-elements"
]
}
}
}
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"dependencies": {
"bluebird": "^2.0.0",
"lodash": "^3.0.0",
"lodash": "^4.5.0",
"react": "^0.14.7",
"react-dom": "^0.14.7"
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"use strict";

const compose = require("lodash/function/flowRight");
const _ = require("lodash");
const path = require("path");

const babelConfig = require("./partial/babel.js");
Expand Down Expand Up @@ -32,7 +32,7 @@ const baseConfiguration = {
}
};

const createConfig = compose(
const createConfig = _.flowRight(
babelConfig(),
cssConfig(),
defineConfig(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ const routes = require("./client-routes");

const content = document.querySelector(".js-content");

require("./demo.styl");

Resolver.render(() => {
return React.createElement(
Router,
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
@import "~@walmart/lithe-core/main";
@import "~@walmart/lithe-extras/lib/demo-shared";

0 comments on commit 9420692

Please sign in to comment.