Skip to content

Commit

Permalink
change to v0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pedronauck committed Mar 28, 2015
1 parent 313de7c commit 66cf59d
Show file tree
Hide file tree
Showing 10 changed files with 23 additions and 25 deletions.
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
root = true

[*]
indent_style = spaces
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
*.DS_Store
*.log
/node_modules
.idea
node_modules
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Installing this component is very easy and it has just one dependency: [React](h
$ bower install --save react-simpletabs
```

- Or if you want to [download the lastest release](https://github.com/pedronauck/react-simpletabs/archive/v0.5.3.zip) and put in your website, it will work too!
- Or if you want to [download the lastest release](https://github.com/pedronauck/react-simpletabs/archive/v0.6.0.zip) and put in your website, it will work too!

**NOTICE:** You need just one thing to make the component work. Put the [base component style](./dist/react-simpletabs.css) at the `<header>` tag. If you don't wanna use the `.css` extension, you can get the `.styl` or `.scss` extension at the folder `./lib`.

Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-simpletabs",
"version": "0.5.3",
"version": "0.6.0",
"homepage": "https://github.com/pedronauck/react-simpletabs",
"authors": [
"Pedro Nauck <[email protected]> (https://github.com/pedronauck)"
Expand Down
2 changes: 1 addition & 1 deletion dist/react-simpletabs.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*!
*
* React Simpletabs - Just a simple tabs component built with React
* @version v0.5.3
* @version v0.6.0
* @link https://github.com/pedronauck/react-simpletabs
* @license MIT
* @author Pedro Nauck (https://github.com/pedronauck)
Expand Down
28 changes: 13 additions & 15 deletions dist/react-simpletabs.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*!
*
* React Simpletabs - Just a simple tabs component built with React
* @version v0.5.3
* @version v0.6.0
* @link https://github.com/pedronauck/react-simpletabs
* @license MIT
* @author Pedro Nauck (https://github.com/pedronauck)
Expand All @@ -20,41 +20,41 @@
return /******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};

/******/
/******/ // The require function
/******/ function __webpack_require__(moduleId) {

/******/
/******/ // Check if module is in cache
/******/ if(installedModules[moduleId])
/******/ return installedModules[moduleId].exports;

/******/
/******/ // Create a new module (and put it into the cache)
/******/ var module = installedModules[moduleId] = {
/******/ exports: {},
/******/ id: moduleId,
/******/ loaded: false
/******/ };

/******/
/******/ // Execute the module function
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);

/******/
/******/ // Flag the module as loaded
/******/ module.loaded = true;

/******/
/******/ // Return the exports of the module
/******/ return module.exports;
/******/ }


/******/
/******/
/******/ // expose the modules object (__webpack_modules__)
/******/ __webpack_require__.m = modules;

/******/
/******/ // expose the module cache
/******/ __webpack_require__.c = installedModules;

/******/
/******/ // __webpack_public_path__
/******/ __webpack_require__.p = "";

/******/
/******/ // Load entry module and return exports
/******/ return __webpack_require__(0);
/******/ })
Expand All @@ -63,8 +63,7 @@ return /******/ (function(modules) { // webpackBootstrap
/* 0 */
/***/ function(module, exports, __webpack_require__) {

/** @jsx React.DOM *//** @jsx React.DOM */
'use strict';
/** @jsx React.DOM */'use strict';

var React = __webpack_require__(1);
var classNames = __webpack_require__(2);
Expand Down Expand Up @@ -253,4 +252,3 @@ return /******/ (function(modules) { // webpackBootstrap
/***/ }
/******/ ])
});
;
2 changes: 1 addition & 1 deletion dist/react-simpletabs.min.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*!
*
* React Simpletabs - Just a simple tabs component built with React
* @version v0.5.3
* @version v0.6.0
* @link https://github.com/pedronauck/react-simpletabs
* @license MIT
* @author Pedro Nauck (https://github.com/pedronauck)
Expand Down
4 changes: 2 additions & 2 deletions dist/react-simpletabs.min.js

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

1 change: 0 additions & 1 deletion lib/react-simpletabs.jsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
/** @jsx React.DOM */
'use strict';

var React = require('react');
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-simpletabs",
"version": "0.5.3",
"version": "0.6.0",
"description": "Just a simple tabs component built with React",
"author": {
"name": "Pedro Nauck",
Expand Down

0 comments on commit 66cf59d

Please sign in to comment.