Skip to content

Commit 5c4f1b5

Browse files
authored
Update deps, cache prettier/eslint, fix docs icons (hestiacp#3309)
* Update deps, cache prettier/eslint, fix docs icons * Fix prettier's angriness
1 parent 159f8c9 commit 5c4f1b5

File tree

9 files changed

+231
-145
lines changed

9 files changed

+231
-145
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,9 @@ web/src/vendor/composer/installed.json
4040
**/node_modules/
4141
npm-debug.log
4242

43+
# optional eslint cache
44+
.eslintcache
45+
4346
# Yarn Integrity file
4447
.yarn-integrity
4548

182 KB
Binary file not shown.
105 KB
Binary file not shown.
388 KB
Binary file not shown.
147 KB
Binary file not shown.

install/deb/phpmyadmin/create_tables.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
-- --------------------------------------------------------
1+
-- --------------------------------------------------------
22
-- SQL Commands to set up the pmadb as described in the documentation.
33
--
44
-- This file is meant for use with MySQL 5 and above!

install/rpm/phpmyadmin/create_tables.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
-- --------------------------------------------------------
1+
-- --------------------------------------------------------
22
-- SQL Commands to set up the pmadb as described in the documentation.
33
--
44
-- This file is meant for use with MySQL 5 and above!

package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
"docs:build": "vitepress build docs",
1111
"docs:serve": "vitepress serve docs",
1212
"build": "postcss web/css/src/themes/*.css --dir web/css/themes --ext .min.css",
13-
"lint": "prettier --check . && eslint . && stylelint web/css/src/**/*.css && markdownlint-cli2 *.md docs/**/*.md",
13+
"lint": "prettier --cache --check . && eslint --cache . && stylelint web/css/src/**/*.css && markdownlint-cli2 *.md docs/**/*.md",
1414
"lint-staged": "lint-staged",
15-
"format": "prettier --write .",
15+
"format": "prettier --cache --write .",
1616
"preinstall": "npx only-allow yarn",
1717
"postinstall": "husky install"
1818
},
@@ -23,14 +23,14 @@
2323
},
2424
"devDependencies": {
2525
"@prettier/plugin-php": "^0.19.3",
26-
"@typescript-eslint/eslint-plugin": "^5.51.0",
27-
"@typescript-eslint/parser": "^5.51.0",
28-
"cssnano": "^5.1.14",
29-
"eslint": "^8.33.0",
26+
"@typescript-eslint/eslint-plugin": "^5.54.0",
27+
"@typescript-eslint/parser": "^5.54.0",
28+
"cssnano": "^5.1.15",
29+
"eslint": "^8.35.0",
3030
"eslint-config-prettier": "^8.6.0",
3131
"eslint-plugin-editorconfig": "^4.0.2",
3232
"husky": "^8.0.3",
33-
"lint-staged": "^13.1.1",
33+
"lint-staged": "^13.1.2",
3434
"markdownlint-cli2": "^0.6.0",
3535
"postcss": "^8.4.21",
3636
"postcss-cli": "^10.1.0",
@@ -41,11 +41,11 @@
4141
"prettier": "^2.8.4",
4242
"prettier-plugin-nginx": "^1.0.2",
4343
"prettier-plugin-sh": "^0.12.8",
44-
"prettier-plugin-sql": "^0.12.1",
45-
"stylelint": "^15.0.0",
44+
"prettier-plugin-sql": "^0.13.0",
45+
"stylelint": "^15.2.0",
4646
"stylelint-config-standard": "^30.0.1",
4747
"typescript": "^4.9.5",
48-
"vitepress": "1.0.0-alpha.45",
48+
"vitepress": "1.0.0-alpha.48",
4949
"vue": "^3.2.47"
5050
}
5151
}

0 commit comments

Comments
 (0)