Skip to content

Commit

Permalink
feat: export style variables and functions (#422)
Browse files Browse the repository at this point in the history
  • Loading branch information
kaitmore committed Apr 25, 2019
1 parent 1875a8f commit f0e07ca
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/components/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,5 @@ export { default as InputRange } from "./Form/scenes/InputRange";
export { default as Textarea } from "./Form/scenes/Textarea";
export { default as Radio } from "./Form/scenes/Radio";
export { default as Select } from "./Form/scenes/Select";
export { keen, keenDark } from "../style/styleVariables";
export * from "../style/styleVariables";
export * from "../style/styleFunctions";
4 changes: 3 additions & 1 deletion webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,5 +89,7 @@ module.exports = {
}
]
},
plugins: [new BundleAnalyzerPlugin({ analyzerMode: "static" })]
plugins: [
new BundleAnalyzerPlugin({ analyzerMode: "static", openAnalyzer: false })
]
};

0 comments on commit f0e07ca

Please sign in to comment.