1
Fork 0

Update dependencies and fix linting issues.

This commit is contained in:
Bauke 2024-01-22 13:05:03 +01:00
parent 8b5d8c047b
commit a830007ff2
Signed by: Bauke
GPG Key ID: C1C0F29952BCF558
10 changed files with 4528 additions and 4400 deletions

View File

@ -13,36 +13,34 @@
"deploy:netlify": "netlify deploy --prod -d 'public' -s 'href.plus'"
},
"dependencies": {
"@fontsource/inter": "^4.5.12",
"@fontsource/inter": "^5.0.16",
"htm": "^3.1.1",
"modern-normalize": "^1.1.0",
"preact": "^10.11.0",
"preact-router": "^4.1.0"
"modern-normalize": "^2.0.0",
"preact": "^10.19.3",
"preact-router": "^4.1.2"
},
"devDependencies": {
"@types/node": "^18.7.23",
"netlify-cli": "^14.2.1",
"postcss": "^8.4.16",
"sass": "^1.55.0",
"stylelint": "^14.13.0",
"stylelint-config-standard-scss": "^5.0.0",
"typescript": "^4.8.4",
"vite": "^3.1.4",
"xo": "^0.52.3"
"@types/node": "^20.11.5",
"netlify-cli": "^17.15.1",
"postcss": "^8.4.33",
"sass": "^1.70.0",
"stylelint": "^16.2.0",
"stylelint-config-standard-scss": "^13.0.0",
"typescript": "^5.3.3",
"vite": "^5.0.12",
"xo": "^0.56.0"
},
"stylelint": {
"extends": [
"stylelint-config-standard-scss"
],
"rules": {
"string-quotes": "single"
}
]
},
"xo": {
"prettier": true,
"rules": {
"@typescript-eslint/consistent-type-definitions": "off",
"@typescript-eslint/consistent-type-imports": "off",
"@typescript-eslint/no-unsafe-declaration-merging": "off",
"n/file-extension-in-import": "off"
},
"space": true

File diff suppressed because it is too large Load Diff

View File

@ -1,5 +1,4 @@
import {Component, html} from 'htm/preact';
import debounce from '../utilities/debounce.js';
import searchReleases, {
searchLimit,
@ -74,16 +73,14 @@ export default class SearchBar extends Component<Props, State> {
`;
}
results.push(
html`
<li>
<a class="search-result" href="/release/${result.id}">
<span class="display">${result.artist} - ${result.title}</span>
${disambiguation}
</a>
</li>
`,
);
results.push(html`
<li>
<a class="search-result" href="/release/${result.id}">
<span class="display">${result.artist} - ${result.title}</span>
${disambiguation}
</a>
</li>
`);
}
const isLoading = this.state.searchState === 'searching';
@ -101,15 +98,13 @@ export default class SearchBar extends Component<Props, State> {
const resultAmount = this.state.searchResults.length;
if (resultAmount > 0 && resultAmount % searchLimit === 0) {
results.push(
html`
<li class="search-state">
<button class="load-more" onClick=${this.searchMore}>
Load more
</button>
</li>
`,
);
results.push(html`
<li class="search-state">
<button class="load-more" onClick=${this.searchMore}>
Load more
</button>
</li>
`);
}
return html`

View File

@ -1,5 +1,4 @@
import {Component, html} from 'htm/preact';
import ExternalAnchor from './external-anchor.js';
type Props = {

View File

@ -1,5 +1,4 @@
import {Component, html} from 'htm/preact';
import ExternalAnchor from '../components/external-anchor.js';
import SearchBar from '../components/search-bar.js';
import SharedFooter from '../components/shared-footer.js';

View File

@ -1,5 +1,4 @@
import {Component, html} from 'htm/preact';
import SharedFooter from '../components/shared-footer.js';
export default class NotFoundPage extends Component {

View File

@ -1,5 +1,4 @@
import {Component, html} from 'htm/preact';
import ExternalAnchor from '../components/external-anchor.js';
import Release from '../utilities/release.js';
@ -94,16 +93,14 @@ export default class ReleasePage extends Component<Props, State> {
const releaseUrl = `https://musicbrainz.org/release/${mbid}`;
if (urls.length === 0) {
const editUrl = `${releaseUrl}/edit`;
urls.push(
html`
<li class="no-links">
<p>
There are no links for this release yet, consider${' '}
<${ExternalAnchor} url="${editUrl}" text="adding some" />?
</p>
</li>
`,
);
urls.push(html`
<li class="no-links">
<p>
There are no links for this release yet, consider${' '}
<${ExternalAnchor} url="${editUrl}" text="adding some" />?
</p>
</li>
`);
} else {
urls.push(
html`<li class="divider"></li>`,

View File

@ -1,5 +1,4 @@
import {Component, html} from 'htm/preact';
import ExternalAnchor from '../components/external-anchor.js';
import SharedFooter from '../components/shared-footer.js';
import {isDebugEnabled} from '../utilities/debug.js';

View File

@ -2,10 +2,8 @@
// import 'preact/debug';
import '@fontsource/inter/latin.css';
import {html, render} from 'htm/preact';
import {Router} from 'preact-router';
import HomePage from './pages/home.js';
import NotFoundPage from './pages/not-found.js';
import ReleasePage from './pages/release.js';

View File

@ -73,8 +73,8 @@ export default class Release {
a.isKnown === b.isKnown
? a.text.localeCompare(b.text)
: b.isKnown
? 1 // This return 1 or -1 is because .sort() expects a number.
: -1,
? 1 // This return 1 or -1 is because .sort() expects a number.
: -1,
);
return new Release({