Skip to content

Commit

Permalink
Fix package
Browse files Browse the repository at this point in the history
  • Loading branch information
aralroca committed Mar 11, 2021
1 parent 45a7a1a commit 7bee8e5
Show file tree
Hide file tree
Showing 4 changed files with 3,621 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules
dist
18 changes: 17 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,22 @@
# Fragmented store

When we update a property of the store, **only** the components that use that particular property **are rendered** even if they consume other elements of the store.
When we update a property of the store, **only the components that use that particular property are rendered**.

It is intended to be a small library and we want to keep it simple.

## Getting started:

Install it with Yarn:

```
yarn add fragmented-store
```

Or install it with Npm:

```
npm install fragmented-store --save
```

## Usage:

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"scripts": {
"build": "microbundle",
"dev": "microbundle watch",
"prepublish": "yarn build",
"prepublish": "yarn build"
},
"keywords": [
"react",
Expand Down
Loading

0 comments on commit 7bee8e5

Please sign in to comment.