Skip to content
This repository has been archived by the owner on Feb 21, 2024. It is now read-only.

Commit

Permalink
Package: Upgrade prettier and siblings
Browse files Browse the repository at this point in the history
  • Loading branch information
justuswilhelm committed Aug 31, 2023
1 parent 65bb5dc commit 5e3e77a
Show file tree
Hide file tree
Showing 4 changed files with 83 additions and 26 deletions.
95 changes: 76 additions & 19 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@
"svelteserver": "svelteserver",
"check": "npm run check:prettier && npm run check:svelte-check && npm run check:eslint && npm run check:knip",
"check:eslint": "eslint . --cache --ext .ts,.js,.svelte src",
"check:prettier": "prettier --ignore-path .gitignore --check --plugin-search-dir=. --cache --cache-strategy metadata .",
"check:prettier": "prettier --ignore-path .gitignore --check --cache --cache-strategy metadata .",
"check:svelte-check": "svelte-check --tsconfig tsconfig.json --diagnostic-sources js,svelte",
"check:knip": "knip",
"format": "npm run fix:prettier",
"fix": "npm run fix:prettier && npm run fix:eslint",
"fix:eslint": "eslint . --fix --cache --ext .ts,.js,.svelte src",
"fix:prettier": "prettier --ignore-path .gitignore --write --plugin-search-dir=. --cache --cache-strategy metadata .",
"fix:prettier": "prettier --ignore-path .gitignore --write --cache --cache-strategy metadata .",
"storybook": "storybook dev -p 6006 --no-open",
"build-storybook": "storybook build"
},
Expand All @@ -37,9 +37,9 @@
"eslint-plugin-svelte": "^2.32.4",
"eslint-plugin-unused-imports": "^3.0.0",
"knip": "^2.20.2",
"prettier": "^2.8.8",
"prettier-plugin-svelte": "^2.10.1",
"prettier-plugin-tailwindcss": "^0.2.8",
"prettier": "^3.0.3",
"prettier-plugin-svelte": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"storybook": "^7.4.0",
Expand Down
2 changes: 1 addition & 1 deletion src/app.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!DOCTYPE html>
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
Expand Down
2 changes: 1 addition & 1 deletion src/lib/stores/dashboard/workspaceBoardSection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ function createCurrentWorkspaceBoardSections(
[
typeof selectedLabels,
typeof selectedWorkspaceUser,
typeof currentWorkspaceBoard
typeof currentWorkspaceBoard,
],
WorkspaceBoardSection[]
>(
Expand Down

0 comments on commit 5e3e77a

Please sign in to comment.