summaryrefslogtreecommitdiff
path: root/.changeset/neat-owls-run.md
diff options
context:
space:
mode:
authorGravatar Houston (Bot) <108291165+astrobot-houston@users.noreply.github.com> 2023-08-30 04:38:28 -0700
committerGravatar GitHub <noreply@github.com> 2023-08-30 13:38:28 +0200
commit5598feb71864f814d0a34bb6bf9f6ecdff081497 (patch)
tree15cfefaaeb8b7f346eb96e05a5e9e086d7bd262b /.changeset/neat-owls-run.md
parente33d951af178ce0b50a41799d3ce76d107c961db (diff)
downloadastro-create-astro@4.0.0.tar.gz
astro-create-astro@4.0.0.tar.zst
astro-create-astro@4.0.0.zip
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Diffstat (limited to '.changeset/neat-owls-run.md')
-rw-r--r--.changeset/neat-owls-run.md25
1 files changed, 0 insertions, 25 deletions
diff --git a/.changeset/neat-owls-run.md b/.changeset/neat-owls-run.md
deleted file mode 100644
index 501b5319f..000000000
--- a/.changeset/neat-owls-run.md
+++ /dev/null
@@ -1,25 +0,0 @@
----
-'astro': major
----
-
-Remove exports for `astro/internal/*` and `astro/runtime/server/*` in favour of `astro/runtime/*`. Add new `astro/compiler-runtime` export for compiler-specific runtime code.
-
-These are exports for Astro's internal API and should not affect your project, but if you do use these entrypoints, you can migrate like below:
-
-```diff
-- import 'astro/internal/index.js';
-+ import 'astro/runtime/server/index.js';
-
-- import 'astro/server/index.js';
-+ import 'astro/runtime/server/index.js';
-```
-
-```diff
-import { transform } from '@astrojs/compiler';
-
-const result = await transform(source, {
-- internalURL: 'astro/runtime/server/index.js',
-+ internalURL: 'astro/compiler-runtime',
- // ...
-});
-```