You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: inlang/source-code/paraglide/paraglide-astro/CHANGELOG.md
+47Lines changed: 47 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,52 @@
1
1
# @inlang/paraglide-astro
2
2
3
+
## 0.3.0
4
+
5
+
### Minor Changes
6
+
7
+
- 80727ee: Add `experimentalUseVirtualModules` option to use the `$paraglide` virtual module instead of writing files to disk. Closes https://github.com/opral/inlang-paraglide-js/issues/264
8
+
9
+
- good for projects that can't have `allowJs: true` in their TypeScript config https://github.com/opral/inlang-paraglide-js/issues/238
10
+
- less clutter in the compiled output directory https://github.com/opral/inlang-paraglide-js/issues/189
11
+
12
+
```diff
13
+
import { paraglide } from "@inlang/paraglide-sveltekit/vite"
14
+
import { defineConfig } from "vite"
15
+
16
+
export default defineConfig({
17
+
plugins: [
18
+
paraglide({
19
+
project: "./project.inlang",
20
+
outdir: "./src/lib/paraglide",
21
+
+ experimentalUseVirtualModules: true,
22
+
}),
23
+
// ... other vite plugins
24
+
],
25
+
})
26
+
```
27
+
28
+
The compiled output will only emit the `runtime.d.ts` and `messages.d.ts` files.
Copy file name to clipboardExpand all lines: inlang/source-code/paraglide/paraglide-sveltekit/CHANGELOG.md
+47Lines changed: 47 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,52 @@
1
1
# @inlang/paraglide-sveltekit
2
2
3
+
## 0.14.0
4
+
5
+
### Minor Changes
6
+
7
+
- 80727ee: Add `experimentalUseVirtualModules` option to use the `$paraglide` virtual module instead of writing files to disk. Closes https://github.com/opral/inlang-paraglide-js/issues/264
8
+
9
+
- good for projects that can't have `allowJs: true` in their TypeScript config https://github.com/opral/inlang-paraglide-js/issues/238
10
+
- less clutter in the compiled output directory https://github.com/opral/inlang-paraglide-js/issues/189
11
+
12
+
```diff
13
+
import { paraglide } from "@inlang/paraglide-sveltekit/vite"
14
+
import { defineConfig } from "vite"
15
+
16
+
export default defineConfig({
17
+
plugins: [
18
+
paraglide({
19
+
project: "./project.inlang",
20
+
outdir: "./src/lib/paraglide",
21
+
+ experimentalUseVirtualModules: true,
22
+
}),
23
+
// ... other vite plugins
24
+
],
25
+
})
26
+
```
27
+
28
+
The compiled output will only emit the `runtime.d.ts` and `messages.d.ts` files.
Copy file name to clipboardExpand all lines: inlang/source-code/paraglide/paraglide-unplugin/CHANGELOG.md
+42Lines changed: 42 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,47 @@
1
1
# @inlang/paraglide-unplugin
2
2
3
+
## 1.9.0
4
+
5
+
### Minor Changes
6
+
7
+
- 80727ee: Add `experimentalUseVirtualModules` option to use the `$paraglide` virtual module instead of writing files to disk. Closes https://github.com/opral/inlang-paraglide-js/issues/264
8
+
9
+
- good for projects that can't have `allowJs: true` in their TypeScript config https://github.com/opral/inlang-paraglide-js/issues/238
10
+
- less clutter in the compiled output directory https://github.com/opral/inlang-paraglide-js/issues/189
11
+
12
+
```diff
13
+
import { paraglide } from "@inlang/paraglide-sveltekit/vite"
14
+
import { defineConfig } from "vite"
15
+
16
+
export default defineConfig({
17
+
plugins: [
18
+
paraglide({
19
+
project: "./project.inlang",
20
+
outdir: "./src/lib/paraglide",
21
+
+ experimentalUseVirtualModules: true,
22
+
}),
23
+
// ... other vite plugins
24
+
],
25
+
})
26
+
```
27
+
28
+
The compiled output will only emit the `runtime.d.ts` and `messages.d.ts` files.
0 commit comments