Skip to content
This repository has been archived by the owner on May 3, 2024. It is now read-only.

Commit

Permalink
prepare for release of 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cellog committed Jan 16, 2017
1 parent ab04b12 commit 6d1eaa0
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 5 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,4 @@ jspm_packages
.node_repl_history

local-test.env
lib
11 changes: 10 additions & 1 deletion .npmignore
Original file line number Diff line number Diff line change
@@ -1,9 +1,18 @@
.DS_Store
*.log
node_modules
src
test
examples
coverage
.idea
wallaby.js
.travis.yml
karma-common.conf.js
.eslintignore
.eslintrc
.codeclimate.yml
local-test.env
run-tests.sh
browserstack.svg
.babelrc
.npmignore
13 changes: 12 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,13 @@
# react-redux-saga-router
elegant powerful routing based on the simplicity of storing url as state
###### Connecting your url and redux state

[![Code Climate](https://codeclimate.com/github/cellog/react-redux-saga-router/badges/gpa.svg)](https://codeclimate.com/github/cellog/react-redux-saga-router) [![Test Coverage](https://codeclimate.com/github/cellog/react-redux-saga-router/badges/coverage.svg)](https://codeclimate.com/github/cellog/react-redux-saga-router/coverage) [![Build Status](https://travis-ci.org/cellog/react-redux-saga-router.svg?branch=master)](https://travis-ci.org/cellog/react-redux-saga-router)

Elegant powerful routing based on the simplicity of storing url as state

To install:

```bash
$ npm i -S react-redux-saga-router
```

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
"name": "react-redux-saga-router",
"version": "0.1.0",
"description": "elegant powerful routing based on the simplicity of storing url as state",
"main": "build/index.js",
"main": "lib/index.js",
"directories": {
"test": "tests"
},
"scripts": {
"build": "npm run clean && babel src --out-dir build",
"clean": "rimraf dist/",
"build": "npm run clean && babel src --out-dir lib",
"clean": "rimraf lib/",
"local-test": "./local-test.env",
"lint": "eslint src test",
"test": "./run-tests.sh"
Expand Down

0 comments on commit 6d1eaa0

Please sign in to comment.