Skip to content

Commit e827870

Browse files
committed
[added] bower support
1 parent 58e7b98 commit e827870

File tree

5 files changed

+46
-8
lines changed

5 files changed

+46
-8
lines changed

.npmignore

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1+
CONTRIBUTING.md
2+
bower.json
3+
examples
14
karma.conf.js
25
script
36
specs
47
webpack.config.js
5-

README.md

+12-5
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,22 @@ and workflows are to create.
2424
Installation
2525
------------
2626

27-
`npm install react-nested-router`
27+
```sh
28+
npm install react-nested-router
29+
# or
30+
bower install react-nested-router
31+
```
32+
33+
This library is written with CommonJS modules. If you are using
34+
browserify, webpack, or similar, you can consume it like anything else
35+
installed from npm.
36+
37+
There is also a UMD build available on bower, find the library on
38+
`window.ReactNestedRouter`.
2839

2940
Usage
3041
-----
3142

32-
This library only ships with CommonJS modules, so you'll need browserify or
33-
webpack or something that can load/bundle it, a global build is coming
34-
soon.
35-
3643
```
3744
var Route = require('react-nested-router').Route;
3845

bower.json

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"name": "react-nested-router",
3+
"version": "0.2.1",
4+
"homepage": "https://github.com/rpflorence/react-nested-router",
5+
"authors": [
6+
"Ryan Florence",
7+
"Michael Jackson",
8+
],
9+
"description": "A complete routing library for React.js",
10+
"main": "dist/react-nested-router.js",
11+
"keywords": [
12+
"react",
13+
"router"
14+
],
15+
"license": "MIT",
16+
"ignore": [
17+
"**/.*",
18+
"node_modules",
19+
"bower_components",
20+
"specs",
21+
"modules",
22+
"examples",
23+
"script",
24+
"CONTRIBUTING.md",
25+
"karma.conf.js",
26+
"package.json",
27+
"webpack.config.js"
28+
]
29+
}

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "react-nested-router",
33
"version": "0.2.1",
4-
"description": "A complete routing library for React",
4+
"description": "A complete routing library for React.js",
55
"tags": [
66
"react",
77
"router"

script/build

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/bin/sh
22
mkdir -p dist
3-
NODE_ENV=production node_modules/.bin/browserify modules/main.js --detect-globals false -s ReactRouter > dist/react-nested-router.js
3+
NODE_ENV=production node_modules/.bin/browserify modules/main.js --detect-globals false -s ReactNestedRouter > dist/react-nested-router.js
44
node_modules/.bin/uglifyjs dist/react-nested-router.js --compress warnings=false > dist/react-nested-router.min.js

0 commit comments

Comments
 (0)