diff options
author | 2023-12-15 14:53:32 -0600 | |
---|---|---|
committer | 2023-12-15 14:53:32 -0600 | |
commit | f963d07f22f972938e1c9e8c95f9278efdff586b (patch) | |
tree | 8fe9b31f7455252a8abdfb450930906f3ccd3fca | |
parent | 017f981304cd22941a441e0f665f66f75ea76a7d (diff) | |
download | astro-f963d07f22f972938e1c9e8c95f9278efdff586b.tar.gz astro-f963d07f22f972938e1c9e8c95f9278efdff586b.tar.zst astro-f963d07f22f972938e1c9e8c95f9278efdff586b.zip |
Upgrade compiler (#9445)
-rw-r--r-- | .changeset/many-dogs-rest.md | 5 | ||||
-rw-r--r-- | packages/astro/package.json | 2 | ||||
-rw-r--r-- | pnpm-lock.yaml | 10 |
3 files changed, 11 insertions, 6 deletions
diff --git a/.changeset/many-dogs-rest.md b/.changeset/many-dogs-rest.md new file mode 100644 index 000000000..4942ffab6 --- /dev/null +++ b/.changeset/many-dogs-rest.md @@ -0,0 +1,5 @@ +--- +'astro': patch +--- + +Upgrades Astro's compiler to a crash when sourcemaps try to map multibyte characters diff --git a/packages/astro/package.json b/packages/astro/package.json index 37338f066..81e62c39f 100644 --- a/packages/astro/package.json +++ b/packages/astro/package.json @@ -112,7 +112,7 @@ "test:e2e:match": "playwright test -g" }, "dependencies": { - "@astrojs/compiler": "^2.3.2", + "@astrojs/compiler": "^2.3.4", "@astrojs/internal-helpers": "workspace:*", "@astrojs/markdown-remark": "workspace:*", "@astrojs/telemetry": "workspace:*", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 7be5adf7c..3b921ca12 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -473,8 +473,8 @@ importers: packages/astro: dependencies: '@astrojs/compiler': - specifier: ^2.3.2 - version: 2.3.2 + specifier: ^2.3.4 + version: 2.3.4 '@astrojs/internal-helpers': specifier: workspace:* version: link:../internal-helpers @@ -5199,8 +5199,8 @@ packages: resolution: {integrity: sha512-o/ObKgtMzl8SlpIdzaxFnt7SATKPxu4oIP/1NL+HDJRzxfJcAkOTAb/ZKMRyULbz4q+1t2/DAebs2Z1QairkZw==} dev: true - /@astrojs/compiler@2.3.2: - resolution: {integrity: sha512-jkY7bCVxl27KeZsSxIZ+pqACe+g8VQUdTiSJRj/sXYdIaZlW3ZMq4qF2M17P/oDt3LBq0zLNwQr4Cb7fSpRGxQ==} + /@astrojs/compiler@2.3.4: + resolution: {integrity: sha512-33/YtWoBCE0cBUNy1kh78FCDXBoBANX87ShgATlAHECYbG2+buNTAgq4Xgz4t5NgnEHPN21GIBC2Mvvwisoutw==} /@astrojs/language-server@2.5.2(prettier-plugin-astro@0.12.2)(prettier@3.1.0)(typescript@5.2.2): resolution: {integrity: sha512-O5SMzoQ65wSxA1KygreI9UJYmHpgt15bSYBxceHwqX7OCDM4Ek8mr6mZn45LGDtwM3dp1uup7kp8exfRPwIFbA==} @@ -5214,7 +5214,7 @@ packages: prettier-plugin-astro: optional: true dependencies: - '@astrojs/compiler': 2.3.2 + '@astrojs/compiler': 2.3.4 '@jridgewell/sourcemap-codec': 1.4.15 '@volar/kit': 1.10.10(typescript@5.2.2) '@volar/language-core': 1.10.10 |