Skip to content

Commit dfd146f

Browse files
authored
Revert "[ci] format" (#10417)
* Revert "[ci] format" This reverts commit 1863727. * pin dependency * update lock
1 parent 8dceb5e commit dfd146f

File tree

128 files changed

+251
-205
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

128 files changed

+251
-205
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,10 @@
4747
},
4848
"packageManager": "[email protected]",
4949
"dependencies": {
50-
"@biomejs/biome": "^1.5.3",
5150
"astro-benchmark": "workspace:*"
5251
},
5352
"devDependencies": {
53+
"@biomejs/biome": "1.5.3",
5454
"@astrojs/check": "^0.5.8",
5555
"@changesets/changelog-github": "^0.4.8",
5656
"@changesets/cli": "^2.26.2",

packages/astro/components/Image.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
import { type LocalImageProps, type RemoteImageProps, getImage } from 'astro:assets';
2+
import { getImage, type LocalImageProps, type RemoteImageProps } from 'astro:assets';
33
import { AstroError, AstroErrorData } from '../dist/core/errors/index.js';
44
import type { HTMLAttributes } from '../types';
55

packages/astro/components/Picture.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
import { type LocalImageProps, type RemoteImageProps, getImage } from 'astro:assets';
2+
import { getImage, type LocalImageProps, type RemoteImageProps } from 'astro:assets';
33
import type { GetImageResult, ImageOutputFormat } from '../dist/@types/astro';
44
import { isESMImportedImage } from '../dist/assets/utils/imageKind';
55
import { AstroError, AstroErrorData } from '../dist/core/errors/index.js';

packages/astro/e2e/fixtures/astro-component/src/pages/index.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
2+
import Hero from '../components/Hero.astro';
23
import LinkedLib from '@e2e/astro-linked-lib'
34
import HoistedScript from '@e2e/astro-linked-lib/HoistedScript'
4-
import Hero from '../components/Hero.astro';
55
---
66

77
<html>

packages/astro/e2e/fixtures/client-only/src/pages/index.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
2-
import { PreactCounter } from '../components/preact/PreactCounter.jsx';
32
import * as react from '../components/react/ReactCounter.jsx';
3+
import { PreactCounter } from '../components/preact/PreactCounter.jsx';
44
import SolidCounter from '../components/solid/SolidCounter.jsx';
5-
import SvelteCounter from '../components/svelte/SvelteCounter.svelte';
65
import VueCounter from '../components/vue/VueCounter.vue';
6+
import SvelteCounter from '../components/svelte/SvelteCounter.svelte';
77
88
// Full Astro Component Syntax:
99
// https://docs.astro.build/basics/astro-components/

packages/astro/e2e/fixtures/hydration-race/src/components/Wrapper.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
import Deeper from './Deeper.astro';
32
import One from './One.jsx';
3+
import Deeper from './Deeper.astro';
44
---
55

66

packages/astro/e2e/fixtures/lit-component/src/pages/index.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
2-
import ClientOnlyComponent from '../components/ClientOnlyComponent.js';
32
import MyCounter from '../components/Counter.js';
43
import NonDeferredCounter from '../components/NonDeferredCounter.js';
4+
import ClientOnlyComponent from '../components/ClientOnlyComponent.js';
55
66
const someProps = {
77
count: 10,

packages/astro/e2e/fixtures/multiple-frameworks/src/pages/index.astro

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
2+
// Style Imports
3+
import '../styles/global.css';
24
// Component Imports
35
import { A, B as Renamed } from '../components';
4-
import { PreactCounter } from '../components/preact/PreactCounter.tsx';
56
import * as react from '../components/react/ReactCounter.jsx';
7+
import { PreactCounter } from '../components/preact/PreactCounter.tsx';
68
import SolidCounter from '../components/solid/SolidCounter.tsx';
7-
import SvelteCounter from '../components/svelte/SvelteCounter.svelte';
89
import VueCounter from '../components/vue/VueCounter.vue';
9-
// Style Imports
10-
import '../styles/global.css';
10+
import SvelteCounter from '../components/svelte/SvelteCounter.svelte';
1111
1212
// Full Astro Component Syntax:
1313
// https://docs.astro.build/basics/astro-components/

packages/astro/e2e/fixtures/nested-in-preact/src/pages/index.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
2-
import { PreactCounter } from '../components/preact/PreactCounter.tsx';
32
import ReactCounter from '../components/react/ReactCounter.jsx';
3+
import { PreactCounter } from '../components/preact/PreactCounter.tsx';
44
import SolidCounter from '../components/solid/SolidCounter.tsx';
5-
import SvelteCounter from '../components/svelte/SvelteCounter.svelte';
65
import VueCounter from '../components/vue/VueCounter.vue';
6+
import SvelteCounter from '../components/svelte/SvelteCounter.svelte';
77
88
// Full Astro Component Syntax:
99
// https://docs.astro.build/basics/astro-components/

packages/astro/e2e/fixtures/nested-in-react/src/pages/index.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
2-
import { PreactCounter } from '../components/preact/PreactCounter.tsx';
32
import ReactCounter from '../components/react/ReactCounter.jsx';
3+
import { PreactCounter } from '../components/preact/PreactCounter.tsx';
44
import SolidCounter from '../components/solid/SolidCounter.tsx';
5-
import SvelteCounter from '../components/svelte/SvelteCounter.svelte';
65
import VueCounter from '../components/vue/VueCounter.vue';
6+
import SvelteCounter from '../components/svelte/SvelteCounter.svelte';
77
88
// Full Astro Component Syntax:
99
// https://docs.astro.build/basics/astro-components/

0 commit comments

Comments
 (0)