summaryrefslogtreecommitdiff
path: root/packages/integrations/partytown
diff options
context:
space:
mode:
authorGravatar Houston (Bot) <108291165+astrobot-houston@users.noreply.github.com> 2025-03-04 06:40:29 -0800
committerGravatar GitHub <noreply@github.com> 2025-03-04 14:40:29 +0000
commitc67a35138c4651b7ea9a01375ce30063e3d80244 (patch)
treeee1a27fcbf86c7e792e8e0be92e98f2ae9ce66f5 /packages/integrations/partytown
parentf61d4420e8f641770091ec96e6809de39f2ceb21 (diff)
downloadastro-@astrojs/vercel@8.1.1.tar.gz
astro-@astrojs/vercel@8.1.1.tar.zst
astro-@astrojs/vercel@8.1.1.zip
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Diffstat (limited to 'packages/integrations/partytown')
-rw-r--r--packages/integrations/partytown/CHANGELOG.md16
-rw-r--r--packages/integrations/partytown/package.json2
2 files changed, 17 insertions, 1 deletions
diff --git a/packages/integrations/partytown/CHANGELOG.md b/packages/integrations/partytown/CHANGELOG.md
index e43021f79..62168e751 100644
--- a/packages/integrations/partytown/CHANGELOG.md
+++ b/packages/integrations/partytown/CHANGELOG.md
@@ -1,5 +1,21 @@
# @astrojs/partytown
+## 2.1.4
+
+### Patch Changes
+
+- [#13109](https://github.com/withastro/astro/pull/13109) [`5c0e0ea`](https://github.com/withastro/astro/commit/5c0e0eaa908bbfd6705eb950713c26c9ee0bd32d) Thanks [@arnottferels](https://github.com/arnottferels)! - Adds support for `config.lib`, which allows changing the destination of the files:
+
+ ```diff
+ export default defineConfig({
+ integrations: [partytown({
+ config: {
+ + lib: '/assets/lib/~partytown/';
+ }
+ })]
+ })
+ ```
+
## 2.1.3
### Patch Changes
diff --git a/packages/integrations/partytown/package.json b/packages/integrations/partytown/package.json
index 95357d28b..7a645caa1 100644
--- a/packages/integrations/partytown/package.json
+++ b/packages/integrations/partytown/package.json
@@ -1,7 +1,7 @@
{
"name": "@astrojs/partytown",
"description": "Use Partytown to move scripts into a web worker in your Astro project",
- "version": "2.1.3",
+ "version": "2.1.4",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",