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

Commit

Permalink
v0.1.1
Browse files Browse the repository at this point in the history
- Updated `README.md`
- Updated `CHANGELOG.md`
- Updated semver
  • Loading branch information
novacbn committed Mar 30, 2020
1 parent 68808a0 commit 36d3515
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 3 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# CHANGELOG

## v0.1.1 - 2020/03/30

- **BREAKING CHANGES**
- All sub-modules, `svelte-commons/lib/*`, are now exported as-is at entry point.
- Due to Snowpack not supporting nested imports from external libraries that well.
- e.g. instead of `import {stores} from "svelte-commons"; const {immutable} = stores;`
- it is `import {immutable} from "svelte-commons";`
- Added initial support for ECMAScript Modules (support for `pikapkg/snowpack` / `jakedeichert/svelvet`)

## v0.1.0 - 2020/03/18

- **BREAKING CHANGES**
Expand Down
2 changes: 1 addition & 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.0
npm install git+https://github.com/novacbn/svelte-commons#0.1.1
```

### Documentation
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.0",
"version": "0.1.1",
"description": "Provides common utilities for working with Svelte",
"main": "lib/index.js",
"module": "dist/esm/index.js",
Expand Down

0 comments on commit 36d3515

Please sign in to comment.