Skip to content
This repository has been archived by the owner on Jul 21, 2021. It is now read-only.

Commit

Permalink
- Updated README.md
Browse files Browse the repository at this point in the history
- Updated `CHANGELOG.md`
- Updated package data
  • Loading branch information
novacbn committed May 19, 2020
1 parent f9c4673 commit 345fbb0
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# CHANGELOG

## v0.1.2 - 2020/05/18

- Added `event` to `util/shared/event`
- Similar to `readable` / `writable`, returns an object `{dispatch: (value) => void, subscriber: (run, invalidate) => unsubscribe}`
- Use this to create singleton event publishers, when not in context of the Browser's DOM. e.g. Application sub-systems
- Added `noop` to `util/shared/functional` for dummy function placeholders
- Fixed `router` not working in hash mode (removed erroneous `format_url` call)

## v0.1.1 - 2020/03/30

- **BREAKING CHANGES**
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Provides a collection of common Svelte Actions, Svelte Stores, and Utility Funct
Open your terminal and install via `npm`:

```sh
npm install git+https://github.com/novacbn/svelte-commons#0.1.1
npm install git+https://github.com/novacbn/svelte-commons#0.1.2
```

### Documentation
Expand Down Expand Up @@ -39,6 +39,7 @@ See TypeDoc documentation at [novacbn.github.io/svelte-commons](https://novacbn.
- [`session_storage`](https://novacbn.github.io/svelte-commons/modules/_stores_browser_storage_.html#session_storage)**browser only**
- [`storage`](https://novacbn.github.io/svelte-commons/modules/_stores_shared_storage_#storage)**shared**
- Utilities
- [`event`](https://novacbn.github.io/svelte-commons/modules/_util_shared_event_.html#event)**shared**
- [`format_css_declaration`](https://novacbn.github.io/svelte-commons/modules/_util_shared_browser_.html#format_css_declaration)**shared**
- [`format_css_reference`](https://novacbn.github.io/svelte-commons/modules/_util_shared_browser_.html#format_css_reference)**shared**
- [`format_css_variable`](https://novacbn.github.io/svelte-commons/modules/_util_shared_browser_.html#format_css_variable)**shared**
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "svelte-commons",
"version": "0.1.1",
"version": "0.1.2",
"description": "Provides common utilities for working with Svelte",
"main": "lib/index.js",
"module": "dist/esm/index.js",
Expand Down

0 comments on commit 345fbb0

Please sign in to comment.