Skip to content

Commit

Permalink
Release v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bluwy committed Apr 7, 2023
1 parent af1ba85 commit 59e4437
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog

## 1.0.0 - 2023-04-07

- **BREAKING:** use named export instead of default export

```js
// Before
import importAssets from 'svelte-preprocess-import-assets'

// After
import { importAssets } from 'svelte-preprocess-import-assets'
```

- Export ESM only
- Fix incorrect filter metadata value (https://github.com/bluwy/svelte-preprocess-import-assets/issues/17)

## 0.2.6 - 2023-02-23

- Handle actual attributes only. Ignore spread, actions, etc.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "svelte-preprocess-import-assets",
"description": "Import assets in markup",
"version": "0.2.6",
"version": "1.0.0",
"license": "MIT",
"author": "Bjorn Lu",
"type": "module",
Expand Down

0 comments on commit 59e4437

Please sign in to comment.