Skip to content

Commit c0b0262

Browse files
fix(proxy-state-tree): fix docs, as bug to test release
1 parent cce6b0c commit c0b0262

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.travis.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,7 @@ after_success:
3838
npm run release
3939
fi
4040
if [[ $TRAVIS_BRANCH == 'master' ]] && [[ $TRAVIS_PULL_REQUEST == 'false' ]]; then
41-
42-
now ./packages/overmind-website -e REDIRECT_URL=https://overmindjs.org/ now-examples/redirect --docker --token $NOW_TOKEN && now alias www.overmindjs.org --token $NOW_TOKEN
41+
now ./packages/overmind-website -e REDIRECT_URL=https://overmindjs.org/ ./packages/overmind-website --docker --token $NOW_TOKEN && now alias www.overmindjs.org --token $NOW_TOKEN
4342
fi
4443
if [[ $TRAVIS_BRANCH == 'next' ]] && [[ $TRAVIS_PULL_REQUEST == 'false' ]]; then
4544
now ./packages/overmind-website --docker --token $NOW_TOKEN && now alias next.overmindjs.org --token $NOW_TOKEN

packages/node_modules/proxy-state-tree/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# proxy-state-tree
22
An implementation of the Mobx/Vue state tracking approach, for library authors
33

4-
`npm install proxy-state-tree@beta`
4+
`npm install proxy-state-tree`
55

66
## Why
77
The **proxy-state-tree** project is created to stimulate innovation in state management. The introduction of [Flux](https://facebook.github.io/flux/) was followed by a big wave of libraries trying to improve on the idea. All these iterations helped moving the community forward and [Redux](https://redux.js.org/) was born a year later. It was frustrating to have all these variations of the same idea, but at the same time it made the core idea better. One factor I believe made this possible is that Flux state management is based on **immutability**. It is a difficult concept to understand, but when you understand it, it is easy to implement the concept of **change**. You literally just check if a value you depend on has changed. That said, immutability tends to put a lof effort on the hands of the consumer. You have to think really hard about how you structure state and expose state to components to avoid performance issues and prevent boilerplate.

0 commit comments

Comments
 (0)