Skip to content
This repository has been archived by the owner on Jul 19, 2019. It is now read-only.

Commit

Permalink
v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jhudson8 committed Dec 28, 2014
1 parent d6e8746 commit 3ca6e84
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 15 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,4 @@ node_modules

.DS_Store
showcase
.generator-release
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "react-chartjs",
"main": "react-chartjs.js",
"version": "0.0.1",
"version": "0.1.0",
"homepage": "https://github.com/jhudson8/react-chartjs",
"authors": [
"Joe Hudson <[email protected]>"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-chartjs",
"version": "0.0.1",
"version": "0.1.0",
"description": "react charting components using the chartjs lib",
"main": "index.js",
"scripts": {
Expand Down
33 changes: 22 additions & 11 deletions react-chartjs.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* react-charts v0.0.1
* react-charts v0.1.0
* https://github.com/jhudson8/react-charts
*
*
Expand Down Expand Up @@ -69,16 +69,27 @@
/* 0 */
/***/ function(module, exports, __webpack_require__) {

Chart.React = {
Bar: __webpack_require__(1),
Doughnut: __webpack_require__(2),
Line: __webpack_require__(3),
Pie: __webpack_require__(4),
PolarArea: __webpack_require__(5),
Radar: __webpack_require__(6)
};


var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;(function(main) {
if (typeof Chart === 'function') {
// script include
main(Chart);
} else {
// AMD
!(__WEBPACK_AMD_DEFINE_ARRAY__ = [], __WEBPACK_AMD_DEFINE_RESULT__ = function() {
return main;
}.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__), __WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));
}
})(function(Chart) {
Chart.React = {
Bar: __webpack_require__(1),
Doughnut: __webpack_require__(2),
Line: __webpack_require__(3),
Pie: __webpack_require__(4),
PolarArea: __webpack_require__(5),
Radar: __webpack_require__(6)
};
return Chart;
});



Expand Down
4 changes: 2 additions & 2 deletions react-chartjs.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 3ca6e84

Please sign in to comment.