Skip to content

Commit 12bd9c7

Browse files
Bump prettier from 2.8.8 to 3.2.5 (#242)
* Bump prettier from 2.8.8 to 3.2.5 Bumps [prettier](https://github.com/prettier/prettier) from 2.8.8 to 3.2.5. - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - [Commits](prettier/prettier@2.8.8...3.2.5) --- updated-dependencies: - dependency-name: prettier dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * fix lint --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Malachi Soord <[email protected]>
1 parent 42cbb11 commit 12bd9c7

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

package-lock.json

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"eslint-plugin-solid": "^0.13.1",
2828
"eslint-plugin-tsdoc": "^0.2.17",
2929
"postcss": "^8.4.31",
30-
"prettier": "^2.8.8",
30+
"prettier": "^3.2.5",
3131
"prettier-config-web-scrobbler": "^0.1.0",
3232
"sass": "^1.69.5",
3333
"solid-start-static": "^0.3.10",

src/components/theme/themes.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ export type ModifiedTheme = `theme-${Theme}`;
4848

4949
export const themeList: Theme[] = ['system', 'dark', 'light'];
5050
export const modifiedThemeList = themeList.map(
51-
(theme) => `theme-${theme}`
51+
(theme) => `theme-${theme}`,
5252
) as ModifiedTheme[];
5353

5454
/**

src/entry-server.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ import {
55
} from 'solid-start/entry-server';
66

77
export default createHandler(
8-
renderAsync((event) => <StartServer event={event} />)
8+
renderAsync((event) => <StartServer event={event} />),
99
);

src/routes/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export default function Home() {
2828

2929
async function getConnectors() {
3030
const res = await fetch(
31-
'https://raw.githubusercontent.com/web-scrobbler/website-resources/master/resources/connectors.json'
31+
'https://raw.githubusercontent.com/web-scrobbler/website-resources/master/resources/connectors.json',
3232
);
3333
const connectors = (await res.json()) as string[];
3434
return connectors.sort(compareIgnoreCase);

0 commit comments

Comments
 (0)