Skip to content

Commit

Permalink
register on bower
Browse files Browse the repository at this point in the history
  • Loading branch information
rickyleung committed Oct 23, 2015
1 parent e1c5ebd commit efae774
Show file tree
Hide file tree
Showing 10 changed files with 57 additions and 10 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ Usage
Download the [latest version](https://github.com/bizdevfe/biz-ui/releases), or:

npm install biz-ui
bower install biz-ui

Together with jQuery, include BizUI in your page:

Expand Down
46 changes: 46 additions & 0 deletions bower.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
{
"name": "biz-ui",
"description": "A jQuery plugin for business UI components",
"main": "./src/bizui.js",
"authors": [
"Ricky <[email protected]>"
],
"license": "MIT",
"keywords": [
"jQuery",
"plugin",
"Button",
"Input",
"Textarea",
"Radio",
"Checkbox",
"Select",
"Dialog",
"Panel",
"Tooltip",
"Tab",
"Page",
"Tree",
"Calendar",
"Table"
],
"homepage": "https://github.com/bizdevfe/biz-ui",
"moduleType": ["amd"],
"dependencies": {
"jquery": "2.1.x"
},
"devDependencies": {
"jshint": "2.8.x",
"js-beautify": "1.5.x",
"less": "2.5.x",
"almond": "0.2.x",
"requirejs": "2.1.x"
},
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"test",
"tests"
]
}
2 changes: 1 addition & 1 deletion dist/jquery.bizui.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* BizUI Framework
* @version v1.0.8
* @version v1.0.9
* @copyright 2015 Sogou, Inc.
* @link https://github.com/bizdevfe/biz-ui
*/
Expand Down
4 changes: 2 additions & 2 deletions dist/jquery.bizui.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* BizUI Framework
* @version v1.0.8
* @version v1.0.9
* @copyright 2015 Sogou, Inc.
* @link https://github.com/bizdevfe/biz-ui
*/
Expand Down Expand Up @@ -14633,7 +14633,7 @@ define('bizui',['require','ui/Button','ui/Input','ui/Textarea','ui/Textline','ui
/**
* @property {String} version 版本号
*/
bizui.version = '1.0.8';
bizui.version = '1.0.9';

var origin = window.bizui;

Expand Down
4 changes: 2 additions & 2 deletions dist/jquery.bizui.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "biz-ui",
"version": "1.0.8",
"version": "1.0.9",
"description": "A jQuery plugin for business UI components",
"keywords": ["jQuery plugin", "Button", "Input", "Textarea", "Radio", "Checkbox", "Select", "Dialog", "Panel", "Tooltip", "Tab", "Page", "Tree", "Calendar", "Table"],
"homepage": "http://bizdevfe.github.io/biz-ui",
Expand Down
2 changes: 1 addition & 1 deletion src/bizui.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ define(function(require) {
/**
* @property {String} version 版本号
*/
bizui.version = '1.0.8';
bizui.version = '1.0.9';

var origin = window.bizui;

Expand Down
2 changes: 1 addition & 1 deletion src/css/main.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* BizUI Framework
* @version v1.0.8
* @version v1.0.9
* @copyright 2015 Sogou, Inc.
* @link https://github.com/bizdevfe/biz-ui
*/
Expand Down
2 changes: 1 addition & 1 deletion src/loader/start.frag
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* BizUI Framework
* @version v1.0.8
* @version v1.0.9
* @copyright 2015 Sogou, Inc.
* @link https://github.com/bizdevfe/biz-ui
*/
Expand Down
2 changes: 1 addition & 1 deletion tool/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ if [ $? -ne 0 ]
fi

#update version
V="1.0.8"
V="1.0.9"
sed -i "s/v[0-9].[0-9].[0-9]/v$V/" "../src/loader/start.frag"
sed -i "s/v[0-9].[0-9].[0-9]/v$V/" "../src/css/main.css"

Expand Down

0 comments on commit efae774

Please sign in to comment.