Skip to content

Commit

Permalink
Update dev deps to use Svelte v4
Browse files Browse the repository at this point in the history
  • Loading branch information
EMH333 committed Jun 27, 2023
1 parent 4e9b92b commit cf11a6a
Show file tree
Hide file tree
Showing 14 changed files with 430 additions and 102 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@

## 0.7.4

- Lock svelte peerDependency to `>=3.43.0 <5` to protect against breaking changes in future Svelte releases
- Lock Svelte peerDependency to `>=3.43.0 <5` to protect against breaking changes in future Svelte releases
- Set compilerOptions.css to `external` by default if using Svelte v4 or higher ([#185](https://github.com/EMH333/esbuild-svelte/issues/185))
- Add compatibility tests for different versions of Svelte and esbuild to prevent regressions
- Switch development version of Svelte to v4

## 0.7.3

Expand Down
2 changes: 1 addition & 1 deletion dist/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { CompileOptions, Warning } from "svelte/types/compiler/interfaces";
import type { PreprocessorGroup } from "svelte/types/compiler/preprocess/types";
import type { PreprocessorGroup } from "svelte/types/compiler/preprocess";
import type { Plugin } from "esbuild";
interface esbuildSvelteOptions {
/**
Expand Down
2 changes: 1 addition & 1 deletion index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { promisify } from "util";
import { readFile, statSync } from "fs";

import type { CompileOptions, Warning } from "svelte/types/compiler/interfaces";
import type { PreprocessorGroup } from "svelte/types/compiler/preprocess/types";
import type { PreprocessorGroup } from "svelte/types/compiler/preprocess"
import type { OnLoadResult, Plugin, PluginBuild } from "esbuild";

interface esbuildSvelteOptions {
Expand Down

0 comments on commit cf11a6a

Please sign in to comment.