mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-07-27 08:30:02 +03:00
Merge 9898c0c8ab
into 02cce1bfb8
This commit is contained in:
commit
a368353dd7
|
@ -1,6 +1,8 @@
|
||||||
Redux DevTools
|
Redux DevTools
|
||||||
=========================
|
=========================
|
||||||
|
|
||||||
|
### [DEMO](http://gaearon.github.io/redux-devtools/)
|
||||||
|
|
||||||
A better README is coming. But if you insist...
|
A better README is coming. But if you insist...
|
||||||
|
|
||||||
<img src='http://i.imgur.com/HMW2pjP.png' width='700'>
|
<img src='http://i.imgur.com/HMW2pjP.png' width='700'>
|
||||||
|
|
18
demo.sh
Normal file
18
demo.sh
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
set -o errexit # Exit on error
|
||||||
|
|
||||||
|
git stash save
|
||||||
|
git checkout gh-pages
|
||||||
|
git pull --rebase origin master
|
||||||
|
cd examples/todomvc
|
||||||
|
webpack
|
||||||
|
git add .
|
||||||
|
if git commit -m 'rebuild todomvc bundle for demo'; then # Commit the changes, if any
|
||||||
|
echo 'Changes Committed'
|
||||||
|
if git push --force; then # Commit the changes, if any
|
||||||
|
echo 'Pushed succecfully'
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
git checkout master
|
||||||
|
git stash apply
|
|
@ -10,7 +10,8 @@
|
||||||
"test": "NODE_ENV=test mocha --compilers js:babel/register --recursive",
|
"test": "NODE_ENV=test mocha --compilers js:babel/register --recursive",
|
||||||
"test:watch": "NODE_ENV=test mocha --compilers js:babel/register --recursive --watch",
|
"test:watch": "NODE_ENV=test mocha --compilers js:babel/register --recursive --watch",
|
||||||
"test:cov": "babel-node ./node_modules/.bin/isparta cover ./node_modules/.bin/_mocha -- --recursive",
|
"test:cov": "babel-node ./node_modules/.bin/isparta cover ./node_modules/.bin/_mocha -- --recursive",
|
||||||
"prepublish": "npm run lint && npm run test && npm run clean && npm run build"
|
"prepublish": "npm run lint && npm run test && npm run clean && npm run build",
|
||||||
|
"demo":"bash ./demo.sh"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
|
Loading…
Reference in New Issue
Block a user