Skip to content

Commit

Permalink
Version Packages (next) (#95)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] authored Jul 19, 2021
1 parent 6b25e18 commit 57a592c
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 1 deletion.
8 changes: 8 additions & 0 deletions .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,26 +27,34 @@
"changesets": [
"angry-emus-study",
"angry-laws-refuse",
"angry-penguins-jog",
"blue-schools-bake",
"brave-boxes-drive",
"breezy-crews-peel",
"breezy-donkeys-argue",
"calm-buses-cheat",
"clever-trains-drum",
"cuddly-maps-dance",
"dirty-boxes-sip",
"dry-cameras-press",
"eight-taxis-wash",
"eleven-windows-roll",
"flat-books-kick",
"flat-mayflies-smell",
"fresh-penguins-heal",
"gorgeous-monkeys-brake",
"happy-mails-kneel",
"happy-toys-boil",
"large-ears-press",
"lemon-toes-relax",
"light-bottles-warn",
"little-plums-grab",
"long-foxes-agree",
"nasty-baboons-joke",
"plenty-pumpkins-buy",
"popular-yaks-fetch",
"proud-dragons-shout",
"purple-spiders-sparkle",
"selfish-experts-rest",
"serious-jeans-hug",
"sharp-laws-leave",
Expand Down
40 changes: 40 additions & 0 deletions packages/vite-plugin-svelte/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,45 @@
# @sveltejs/vite-plugin-svelte

## 1.0.0-next.13

### Minor Changes

- Add `experimental` section to options and move `useVitePreprocess` there ([#99](https://github.com/sveltejs/vite-plugin-svelte/pull/99))

Experimental options are not ready for production use and breaking changes to them can occur in any release

If you already had `useVitePreprocess` enabled, update you config:

```diff
- svelte({useVitePreprocess: true})
+ svelte({experimental: {useVitePreprocess: true}})
```

* Add option to ignore svelte preprocessors of other vite plugins ([#98](https://github.com/sveltejs/vite-plugin-svelte/pull/98))

- ignore them all: `ignorePluginPreprocessors: true`
- ignore by name: `ignorePluginPreprocessors: ['<name of plugin>',...]`

- Move plugin preprocessor definition to api namespace ([#98](https://github.com/sveltejs/vite-plugin-svelte/pull/98))

Plugins that provide `myplugin.sveltePreprocess`, should move it to `myplugin.api.sveltePreprocess`, as suggested by [rollup](https://rollupjs.org/guide/en/#direct-plugin-communication)

* Experimental: Generate sourcemaps for preprocessors that lack them ([#101](https://github.com/sveltejs/vite-plugin-svelte/pull/101))

enable option `experimental.generateMissingPreprocessorSourcemaps` to use it

### Patch Changes

- removed redundant `disableCssHmr` option ([#99](https://github.com/sveltejs/vite-plugin-svelte/pull/99))

You can use `emitCss: false` or `emitCss: !!isProduction` instead

* further improvements to changelog (see [#93](https://github.com/sveltejs/vite-plugin-svelte/issues/93)) ([#94](https://github.com/sveltejs/vite-plugin-svelte/pull/94))

- reduce log output with log.once function to filter repetetive messages ([#101](https://github.com/sveltejs/vite-plugin-svelte/pull/101))

* remove transitive peer dependency on rollup (fixes [#57](https://github.com/sveltejs/vite-plugin-svelte/issues/57)) ([#103](https://github.com/sveltejs/vite-plugin-svelte/pull/103))

## 1.0.0-next.12

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/vite-plugin-svelte/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sveltejs/vite-plugin-svelte",
"version": "1.0.0-next.12",
"version": "1.0.0-next.13",
"license": "MIT",
"author": "dominikg",
"files": [
Expand Down

0 comments on commit 57a592c

Please sign in to comment.