Skip to content

Commit

Permalink
[ci] release (#1013)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] authored Jun 24, 2024
1 parent 0bb2746 commit 7fcc29b
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 10 deletions.
5 changes: 0 additions & 5 deletions .changeset/light-ligers-rhyme.md

This file was deleted.

24 changes: 20 additions & 4 deletions packages/compiler/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @astrojs/compiler

## 2.8.1

### Patch Changes

- 0bb2746: Allow `data-astro-reload` to take a value

## 2.8.0

### Minor Changes
Expand Down Expand Up @@ -139,8 +145,15 @@
Results in:

```html
<div data-astro-source-file="/Users/erika/Projects/..." data-astro-source-loc="1:1">
<span data-astro-source-file="/Users/erika/Projects/..." data-astro-source-loc="2:2">hello world</span>
<div
data-astro-source-file="/Users/erika/Projects/..."
data-astro-source-loc="1:1"
>
<span
data-astro-source-file="/Users/erika/Projects/..."
data-astro-source-loc="2:2"
>hello world</span
>
</div>
```

Expand Down Expand Up @@ -631,8 +644,11 @@
- c770e7b: The compiler will now return `diagnostics` and unique error codes to be handled by the consumer. For example:

```js
import type { DiagnosticSeverity, DiagnosticCode } from '@astrojs/compiler/types';
import { transform } from '@astrojs/compiler';
import type {
DiagnosticSeverity,
DiagnosticCode,
} from "@astrojs/compiler/types";
import { transform } from "@astrojs/compiler";

async function run() {
const { diagnostics } = await transform(file, opts);
Expand Down
2 changes: 1 addition & 1 deletion packages/compiler/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"type": "module",
"bugs": "https://github.com/withastro/compiler/issues",
"homepage": "https://astro.build",
"version": "2.8.0",
"version": "2.8.1",
"scripts": {
"build": "tsup"
},
Expand Down

0 comments on commit 7fcc29b

Please sign in to comment.