Skip to content

Commit 57a592c

Browse files
Version Packages (next) (#95)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 6b25e18 commit 57a592c

File tree

3 files changed

+49
-1
lines changed

3 files changed

+49
-1
lines changed

Diff for: .changeset/pre.json

+8
Original file line numberDiff line numberDiff line change
@@ -27,26 +27,34 @@
2727
"changesets": [
2828
"angry-emus-study",
2929
"angry-laws-refuse",
30+
"angry-penguins-jog",
3031
"blue-schools-bake",
3132
"brave-boxes-drive",
3233
"breezy-crews-peel",
3334
"breezy-donkeys-argue",
3435
"calm-buses-cheat",
3536
"clever-trains-drum",
3637
"cuddly-maps-dance",
38+
"dirty-boxes-sip",
3739
"dry-cameras-press",
3840
"eight-taxis-wash",
41+
"eleven-windows-roll",
3942
"flat-books-kick",
43+
"flat-mayflies-smell",
4044
"fresh-penguins-heal",
4145
"gorgeous-monkeys-brake",
46+
"happy-mails-kneel",
4247
"happy-toys-boil",
4348
"large-ears-press",
4449
"lemon-toes-relax",
4550
"light-bottles-warn",
4651
"little-plums-grab",
4752
"long-foxes-agree",
4853
"nasty-baboons-joke",
54+
"plenty-pumpkins-buy",
4955
"popular-yaks-fetch",
56+
"proud-dragons-shout",
57+
"purple-spiders-sparkle",
5058
"selfish-experts-rest",
5159
"serious-jeans-hug",
5260
"sharp-laws-leave",

Diff for: packages/vite-plugin-svelte/CHANGELOG.md

+40
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,45 @@
11
# @sveltejs/vite-plugin-svelte
22

3+
## 1.0.0-next.13
4+
5+
### Minor Changes
6+
7+
- Add `experimental` section to options and move `useVitePreprocess` there ([#99](https://github.com/sveltejs/vite-plugin-svelte/pull/99))
8+
9+
Experimental options are not ready for production use and breaking changes to them can occur in any release
10+
11+
If you already had `useVitePreprocess` enabled, update you config:
12+
13+
```diff
14+
- svelte({useVitePreprocess: true})
15+
+ svelte({experimental: {useVitePreprocess: true}})
16+
```
17+
18+
* Add option to ignore svelte preprocessors of other vite plugins ([#98](https://github.com/sveltejs/vite-plugin-svelte/pull/98))
19+
20+
- ignore them all: `ignorePluginPreprocessors: true`
21+
- ignore by name: `ignorePluginPreprocessors: ['<name of plugin>',...]`
22+
23+
- Move plugin preprocessor definition to api namespace ([#98](https://github.com/sveltejs/vite-plugin-svelte/pull/98))
24+
25+
Plugins that provide `myplugin.sveltePreprocess`, should move it to `myplugin.api.sveltePreprocess`, as suggested by [rollup](https://rollupjs.org/guide/en/#direct-plugin-communication)
26+
27+
* Experimental: Generate sourcemaps for preprocessors that lack them ([#101](https://github.com/sveltejs/vite-plugin-svelte/pull/101))
28+
29+
enable option `experimental.generateMissingPreprocessorSourcemaps` to use it
30+
31+
### Patch Changes
32+
33+
- removed redundant `disableCssHmr` option ([#99](https://github.com/sveltejs/vite-plugin-svelte/pull/99))
34+
35+
You can use `emitCss: false` or `emitCss: !!isProduction` instead
36+
37+
* 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))
38+
39+
- reduce log output with log.once function to filter repetetive messages ([#101](https://github.com/sveltejs/vite-plugin-svelte/pull/101))
40+
41+
* 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))
42+
343
## 1.0.0-next.12
444

545
### Minor Changes

Diff for: packages/vite-plugin-svelte/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sveltejs/vite-plugin-svelte",
3-
"version": "1.0.0-next.12",
3+
"version": "1.0.0-next.13",
44
"license": "MIT",
55
"author": "dominikg",
66
"files": [

0 commit comments

Comments
 (0)