From 36d351582eae0f2df727798073b8fbed8731fd6f Mon Sep 17 00:00:00 2001 From: novacbn <31122674+novacbn@users.noreply.github.com> Date: Mon, 30 Mar 2020 15:10:02 -0400 Subject: [PATCH] v0.1.1 - Updated `README.md` - Updated `CHANGELOG.md` - Updated semver --- CHANGELOG.md | 9 +++++++++ README.md | 2 +- package-lock.json | 2 +- package.json | 2 +- 4 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b74aa3c..04ac882 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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** diff --git a/README.md b/README.md index 61d2c86..28f1f75 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/package-lock.json b/package-lock.json index b3e8869..c7f7ce0 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "svelte-commons", - "version": "0.0.4", + "version": "0.1.1", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index d29e6f2..63b972b 100644 --- a/package.json +++ b/package.json @@ -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",